mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 15:42:35 +00:00
20 lines
357 B
Ruby
20 lines
357 B
Ruby
class IMICFPS
|
|
class ExtrasMenu < Menu
|
|
def setup
|
|
title IMICFPS::NAME
|
|
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 |