mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 15:42:35 +00:00
16 lines
312 B
Ruby
16 lines
312 B
Ruby
class IMICFPS
|
|
class MainMenu < Menu
|
|
def setup
|
|
title "I-MIC FPS"
|
|
link "Single Player" do
|
|
push_state(LoadingState.new(forward: Game))
|
|
end
|
|
link "Settings" do
|
|
# push_game_state(SettingsMenu)
|
|
end
|
|
link "Exit" do
|
|
window.close
|
|
end
|
|
end
|
|
end
|
|
end |