Redid menus, stubbed Entity

This commit is contained in:
2019-09-30 20:49:41 -05:00
parent 31d96354f7
commit a44355a871
11 changed files with 214 additions and 112 deletions

11
lib/window.rb Normal file
View File

@@ -0,0 +1,11 @@
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