vision/scene/load.lua

19 lines
335 B
Lua
Raw Normal View History

2022-10-13 16:06:52 +02:00
LoadScene = Object.extend(Object)
function LoadScene:new()
end
function LoadScene:update(dt)
end
function LoadScene:draw()
love.graphics.setColor( text.r, text.g, text.b, text.a )
love.graphics.print("Loading assets", 10, 10)
end
function LoadScene:drawHud()
end
function LoadScene:keypressed(key,unicode)
end