vision/scene/load.lua
2022-10-13 18:18:27 +02:00

18 lines
339 B
Lua

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