1
0
Fork 0

clean mapstruct.h from useless structures

This commit is contained in:
Sylvain PILLOT 2023-08-01 22:39:21 +02:00
parent e0e4140c9b
commit d3684acaed
1 changed files with 0 additions and 11 deletions

View File

@ -6,15 +6,6 @@
typedef struct {
/* the ID of the tile, as per tiled configuration, first is ID=0, then line
* by line, each line left to right, +1 at each tile.*/
int tileID;
/* maximum speed on that tile for the player */
/* Note : Speed = 0 means that the tile is not walkable */
int speed;
} Tile_Data;
typedef struct {
/* width, height and the number of layer of the map */
@ -32,8 +23,6 @@ typedef struct {
/* list of all the tiles */
uint16_t *layers[];
} Map;