public
Description: The classic Simon game. Written with the help of Jim Weirich.
Homepage:
Clone URL: git://github.com/slagyr/simon.git
simon / stages.rb
100644 18 lines (16 sloc) 0.367 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# This file (stages.rb) is used to define the stages within your production.
#
# Below is an example statge configuration.
#
# stage "center_stage" do
# default_scene "main"
# title "Limelight Center Stage"
# location [0, 0]
# size [300, 800]
# end
 
stage "default" do
  default_scene "main"
  title "Simon"
  location [200, 25]
  size :auto, :auto
end