mirror of
https://gitea.com/SweetSea-ButImNotSweet/tromi_mobile.git
synced 2025-01-08 17:33:09 +08:00
10 lines
254 B
Lua
10 lines
254 B
Lua
local LoadingScene = SCENE:extend()
|
|
|
|
function LoadingScene.update()
|
|
SCENE = SETTINGS.firstTime and InputConfigScene(true) or TitleScene()
|
|
end
|
|
function LoadingScene.render()
|
|
love.graphics.draw(LOADING_IMAGE_FILE,0,0,0,0.5)
|
|
end
|
|
|
|
return LoadingScene |