Method: CARPS::StartGameInterface.start_game_interface
- Defined in:
- lib/carps/service/start/interface.rb
.start_game_interface(mailer, config, manager) ⇒ Object
Start interface
33 34 35 36 37 38 39 40 41 |
# File 'lib/carps/service/start/interface.rb', line 33 def StartGameInterface.start_game_interface mailer, config, manager loop do choice = callcc do |continuation| interface = self.new continuation, mailer, config, manager interface.run end choice.call end end |