Added Game States, decoupled game from Window class and placed it in Game < GameState

This commit is contained in:
2018-09-09 07:36:59 -05:00
parent bf783381ee
commit 16e0e4dcff
10 changed files with 216 additions and 151 deletions

View File

@@ -0,0 +1,7 @@
class IMICFPS
class MainMenu < Menu
def setup
title "I-MIC FPS"
end
end
end