Initial commit
This commit is contained in:
commit
2341e8711f
6 changed files with 70 additions and 0 deletions
19
src/main.lua
Normal file
19
src/main.lua
Normal file
|
@ -0,0 +1,19 @@
|
|||
import "CoreLibs/object"
|
||||
import "CoreLibs/graphics"
|
||||
import "CoreLibs/sprite"
|
||||
import "CoreLibs/timer"
|
||||
|
||||
local gfx <const> = playdate.graphics
|
||||
|
||||
function setup()
|
||||
|
||||
end
|
||||
|
||||
function playdate.update()
|
||||
|
||||
|
||||
playdate.timer.updateTimers()
|
||||
gfx.sprite.update()
|
||||
end
|
||||
|
||||
setup()
|
Loading…
Add table
Add a link
Reference in a new issue