PS5346O5Q57LK6YVUQPEZJVUYFZYUT24WJ62LQNMC3JALXSFWKJQC
if App.initialize_globals then App.initialize_globals() end
if App.initialize then App.initialize(love.arg.parseGameArguments(arg), arg) end
if love.timer then love.timer.step() end
App.initialize_globals()
App.initialize(love.arg.parseGameArguments(arg), arg)
if love.graphics and love.graphics.isActive() then
love.graphics.origin()
love.graphics.clear(love.graphics.getBackgroundColor())
if App.draw then App.draw() end
love.graphics.present()
end
if love.timer then dt = love.timer.step() end
if App.update then App.update(dt) end -- will pass 0 if love.timer is disabled
if love.timer then love.timer.sleep(0.001) end
dt = love.timer.step()
App.update(dt)
love.timer.sleep(0.001)