mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 07:32:35 +00:00
22 lines
388 B
Ruby
22 lines
388 B
Ruby
# frozen_string_literal: true
|
|
|
|
class IMICFPS
|
|
class ExtrasMenu < Menu
|
|
def setup
|
|
title I18n.t("menus.extras")
|
|
|
|
link "Asset Viewer" do
|
|
push_state(IMICFPS::AssetViewerTool::MainMenu)
|
|
end
|
|
|
|
link "Map Editor" do
|
|
push_state(IMICFPS::MapEditorTool::MainMenu)
|
|
end
|
|
|
|
link I18n.t("menus.back") do
|
|
pop_state
|
|
end
|
|
end
|
|
end
|
|
end
|