Initial commit: Stubbed layout replica of official W3D Hub Launcher

This commit is contained in:
2021-11-08 09:39:06 -06:00
commit bbff4b1952
16 changed files with 194 additions and 0 deletions

10
lib/window.rb Normal file
View File

@@ -0,0 +1,10 @@
class W3DHub
class Window < CyberarmEngine::Window
def setup
self.caption = "W3D Hub Launcher"
# push_state(W3DHub::States::Boot)
push_state(W3DHub::States::Interface)
end
end
end