Files
i-mic-fps/lib/ui/menus/extras_menu.rb

20 lines
355 B
Ruby

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