Added more menus; stub for settings, basic pause menu, fixes for multiple Game inits

This commit is contained in:
2020-01-28 19:59:42 -06:00
parent c25df59819
commit 46cffa293e
10 changed files with 83 additions and 21 deletions

View File

@@ -0,0 +1,14 @@
class IMICFPS
class SettingsMenu < Menu
def setup
title "I-MIC FPS"
subtitle "Settings"
link "\"There is no spoon.\""
link "Back" do
pop_state
end
end
end
end