mirror of
https://git.planet-casio.com/Fcalva/Copy3DEngine.git
synced 2025-01-01 06:23:41 +01:00
16 lines
327 B
C
16 lines
327 B
C
// Voir README.md pour license précise, par Fcalva 2023-2024 et est sous GPLv3
|
|
|
|
#include "fixed.h"
|
|
#ifndef map__h
|
|
#define map__h
|
|
|
|
typedef struct {
|
|
|
|
} RcMap;
|
|
|
|
//! Attention à avoir *exactement* la même taille entre ces valeurs et la carte dans map.c !
|
|
|
|
#define map_w 64
|
|
#define map_h 128
|
|
|
|
#endif /* map__h */
|