25 lines
281 B
C
25 lines
281 B
C
#ifndef ARENAENGINE_H_
|
|
#define ARENAENGINE_H_
|
|
|
|
|
|
|
|
/*
|
|
typedef struct items{
|
|
int type_id;
|
|
//texture?
|
|
int isFlat;
|
|
int minedId;
|
|
struct items;
|
|
}ITEMS;
|
|
*/
|
|
|
|
typedef struct a_tile{
|
|
int type_id;
|
|
//texture?
|
|
int isFlat;
|
|
int canBeMined;
|
|
//struct a_tile nextTile;
|
|
}ARENA_TILE;
|
|
|
|
#endif
|