adamsanderson / flourish

Action packed tree growing excitement

This URL has Read+Write access

flourish / flourish.rb
100755 16 lines (13 sloc) 0.266 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'rubygems'
require 'gosu'
require 'singleton'
 
require 'lib/support'
require 'lib/flourish_state'
 
Dir["lib/*.rb"].each do |file|
  require file
end
 
if __FILE__ == $0
  Game.window = GameWindow.new
  Game.push_state GameState.new(nil)
  Game.window.show
end