VERSIÓ 1.4.7

- [NEW] map.cell() per a establir o llegir el tamany dels tiles del mapa
This commit is contained in:
2026-03-19 11:29:08 +01:00
parent 779ef7acb6
commit 4a3450e116
5 changed files with 51 additions and 15 deletions

View File

@@ -102,6 +102,15 @@ function map.tile(x, y) end
---Set the tile at the position (x,y) in the current tilemap
function map.tile(x, y, tile) end
---@param w number
---@param h number
---Set current tile size
function map.cell(w, h) end
---@return number w, number h
---Set current tile size
function map.cell() end
---@class pal
pal = {}