mirror of
https://github.com/cyberarm/i-mic-rts.git
synced 2025-12-13 23:02:35 +00:00
11 lines
230 B
Ruby
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 |