Added extras menu, stubbed map editor, made asset viewer and map editor accessible from extras menu

This commit is contained in:
2020-03-22 12:17:28 -05:00
parent d6802c8756
commit fd228aa0c0
8 changed files with 79 additions and 34 deletions

View File

@@ -0,0 +1,20 @@
class IMICFPS
class ExtrasMenu < Menu
def setup
title "I-MIC FPS"
subtitle "Extras"
link "Asset Viewer" do
push_state(IMICFPS::AssetViewerTool::MainMenu)
end
link "Map Editor" do
push_state(IMICFPS::MapEditorTool::MainMenu)
end
link "Back" do
pop_state
end
end
end
end