Moved THEME into its own file, added safe_get_image to prevent crash if image is not present, stubbed worker and some other bits for later.

This commit is contained in:
2026-04-16 10:14:53 -05:00
parent 451b08bb9e
commit 7d6fce2969
12 changed files with 188 additions and 99 deletions

13
lib/dialogs/about.rb Normal file
View File

@@ -0,0 +1,13 @@
module W3DHubLauncher
module Dialogs
class About < CyberarmEngine::GuiState # Dialog
def setup
# application name and version
# authorship
# special thanks
# used gems and libraries
# useful links
end
end
end
end