mirror of
https://github.com/cyberarm/w3d_hub_linux_launcher.git
synced 2025-12-16 01:02:34 +00:00
13 lines
243 B
Ruby
13 lines
243 B
Ruby
class W3DHub
|
|
class States
|
|
class DemoInputDelay < CyberarmEngine::GameState
|
|
def button_down(id)
|
|
return unless id == Gosu::KB_SPACE
|
|
|
|
pop_state # Erase self
|
|
push_state(States::Boot)
|
|
end
|
|
end
|
|
end
|
|
end
|