Added main menu, added loading screen, hacked and chiseled things until I could load models without attaching to a gameobject.

This commit is contained in:
2018-09-09 15:01:53 -05:00
parent d37758526a
commit 66e7800cad
11 changed files with 182 additions and 16 deletions

View File

@@ -2,6 +2,12 @@ class IMICFPS
class MainMenu < Menu
def setup
title "I-MIC FPS"
link "Single Player" do
push_game_state(LoadingState.new(forward: Game))
end
link "Exit" do
$window.close
end
end
end
end