Copy3DEngine/include/C3D/map.h

17 lines
327 B
C
Raw Normal View History

2024-03-09 21:21:17 +01:00
// Voir README.md pour license précise, par Fcalva 2023-2024 et est sous GPLv3
#include "fixed.h"
2024-10-05 00:56:13 +02:00
#ifndef map__h
#define map__h
typedef struct {
} RcMap;
2024-03-09 21:21:17 +01:00
2024-03-09 21:31:14 +01:00
//! Attention à avoir *exactement* la même taille entre ces valeurs et la carte dans map.c !
2024-03-09 21:21:17 +01:00
#define map_w 64
#define map_h 128
2024-10-05 00:56:13 +02:00
#endif /* map__h */