class RuGUI::FrameworkAdapters::Rubygame::BaseMainController

Public Instance Methods

quit() click to toggle source
# File lib/rugui/framework_adapters/Rubygame.rb, line 26
def quit
  throw :quit
  Rubygame.quit
end
refresh() click to toggle source
# File lib/rugui/framework_adapters/Rubygame.rb, line 23
def refresh
end
run() click to toggle source
# File lib/rugui/framework_adapters/Rubygame.rb, line 15
def run
  catch :quit do
    loop do
      self.adapted_object.step
    end
  end
end