Class: Smagacor::SmagacorUI

Inherits:
Object show all
Defined in:
lib/smagacor/smagacor-ui.rb

Overview

Wraps the creation of the Smagacor Application.

Instance Method Summary collapse

Instance Method Details

#startObject

Builds the application and runs it.



221
222
223
224
225
226
# File 'lib/smagacor/smagacor-ui.rb', line 221

def start
  app = FXApp.new( "Smagacor Game Collection", "Smagacor Game Collection" )
  window = SmagacorWindow.new( app, Controller.new )
  app.create
  app.run
end