mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 15:42:35 +00:00
21 lines
419 B
Ruby
21 lines
419 B
Ruby
# frozen_string_literal: true
|
|
|
|
class IMICFPS
|
|
class MultiplayerMenu < Menu
|
|
def setup
|
|
title I18n.t("menus.multiplayer")
|
|
|
|
link "Quick Join"
|
|
link "Server Browser" do
|
|
push_state(MultiplayerServerBrowserMenu)
|
|
end
|
|
link "Profile" do
|
|
push_state(MultiplayerProfileMenu)
|
|
end
|
|
link I18n.t("menus.back"), margin_top: 25 do
|
|
pop_state
|
|
end
|
|
end
|
|
end
|
|
end
|