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