intro screens

This commit is contained in:
2026-03-17 00:38:35 +01:00
parent a208f0d27a
commit 4d8f01187b
12 changed files with 190 additions and 75 deletions

View File

@@ -4,7 +4,7 @@ local _windows = {}
--- Registers a window table.
--- @within Window
--- @param id string The ID of the window (e.g., "splash", "menu").</br>
--- @param window_table table The actual window module table (e.g., SplashWindow).</br>
--- @param window_table table The actual window module table (e.g., GameWindow).</br>
function Window.register(id, window_table)
_windows[id] = window_table
end