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