public
Description: The classic Simon game. Written with the help of Jim Weirich.
Homepage:
Clone URL: git://github.com/slagyr/simon.git
simon / init.rb
100644 16 lines (11 sloc) 0.639 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# This file (init.rb) is the second file loaded (after production.rb) when a production is loaded.
# Initialization code for the production should go here.
 
# If your production is using external ruby source code that will be required in player modules, you may
# add the path to $: here.
# $: << File.expand_path(File.dirname(__FILE__) + "/lib")
 
# Acquires a reference to the production.
# production = Limelight::Production["Simon"]
 
# Require any source code that will be used by the production.
#require 'seomthing'
 
# This is the ideal place to assign values to production attributes.
#production.something = MySource::Something.new