Added scripts

This commit is contained in:
Mathew Velasquez 2015-11-17 15:35:51 -05:00
parent d40ae86ba4
commit 5118df09f4
106 changed files with 15680 additions and 0 deletions

13
scripts/Game_Light.rb Normal file
View file

@ -0,0 +1,13 @@
class Game_Light
attr_accessor :filename
attr_accessor :intensity
attr_accessor :x
attr_accessor :y
def initialize(filename, intensity, x, y)
@filename = filename
@intensity = intensity
@x = x
@y = y
end
end