2013-02-13 23:10:55 +01:00

14 lines
211 B
C

#ifndef MAP_H
#define MAP_H
#define MAP_POS(x, y, z) ((x) + ((y) * m_map->width) + ((z) * m_map->width * m_map->depth))
typedef struct {
u16 width;
u16 depth;
u16 height;
u16 *map;
} Map;
#endif // MAP_H