4
0
Files
mranderson/inc/window/window.splash.lua
Zsolt Tasnadi 8e8d181c34
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
shadowed text
2025-12-13 20:11:50 +01:00

12 lines
340 B
Lua

function SplashWindow.draw()
Print.text("Mr. Anderson's", 78, 60, Config.colors.green)
Print.text("Addventure", 90, 70, Config.colors.green)
end
function SplashWindow.update()
Context.splash_timer = Context.splash_timer - 1
if Context.splash_timer <= 0 or Input.menu_confirm() then
GameWindow.set_state(WINDOW_INTRO)
end
end