mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 15:42:35 +00:00
19 lines
372 B
Ruby
19 lines
372 B
Ruby
class IMICFPS
|
|
class MultiplayerMenu < Menu
|
|
def setup
|
|
title IMICFPS::NAME
|
|
subtitle "Multiplayer"
|
|
|
|
link "Quick Join"
|
|
link "Server Browser" do
|
|
push_state(MultiplayerServerBrowserMenu)
|
|
end
|
|
link "Profile" do
|
|
push_state(MultiplayerProfileMenu)
|
|
end
|
|
link "Back" do
|
|
pop_state
|
|
end
|
|
end
|
|
end
|
|
end |