Files
paku/data/game.lua
Raimon Zamora 9a6bceec91 - [NEW] 'animations' module
- [NEW] 'game' module
- [NEW] 'sprites' module
- [NEW] more tiles
- [NEW] Can choose which tile layer to edit from the editor menu
2025-06-20 18:32:46 +02:00

18 lines
260 B
Lua

game = {
enable = function()
app.update = game.update
sys.beat(20)
end,
update = function()
view.origin(0,0)
surf.target(0)
score.draw()
-- Pintar el mapa i sprites
rooms.draw()
end
}