Files
i-mic-rts/lib/window.rb
2019-09-30 20:49:41 -05:00

11 lines
230 B
Ruby

class IMICRTS
class Window < CyberarmEngine::Engine
def setup
Gosu.milliseconds # Start counter
self.caption = "I-MIC RTS (#{Gosu.language})"
push_state(Boot)
# push_state(MainMenu)
end
end
end