mirror of
https://github.com/cyberarm/w3d_hub_linux_launcher.git
synced 2025-12-16 01:02:34 +00:00
16 lines
274 B
Ruby
16 lines
274 B
Ruby
class W3DHub
|
|
class Window < CyberarmEngine::Window
|
|
def setup
|
|
self.caption = "W3D Hub Launcher"
|
|
|
|
push_state(W3DHub::States::Boot)
|
|
end
|
|
|
|
def button_down(id)
|
|
super
|
|
|
|
self.borderless = !self.borderless? if id == Gosu::KB_F7
|
|
end
|
|
end
|
|
end
|