module Game class Application class << self # Start the Game's Application def run(*args, &blk) self.new.run(*args, &blk) end end end end