mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 07:32:35 +00:00
22 lines
460 B
Ruby
22 lines
460 B
Ruby
# frozen_string_literal: true
|
|
|
|
class IMICFPS
|
|
class SinglePlayerMenu < Menu
|
|
def setup
|
|
title I18n.t("menus.singleplayer")
|
|
|
|
link "Tutorial", enabled: false, tip: "No tutorial implemented, yet..."
|
|
|
|
link "Campaign", enabled: false, tip: "No campaign, yet..."
|
|
|
|
link "Multiplayer Practice" do
|
|
push_state(LevelSelectMenu)
|
|
end
|
|
|
|
link I18n.t("menus.back"), margin_top: 25 do
|
|
pop_state
|
|
end
|
|
end
|
|
end
|
|
end
|