17 lines
267 B
C
17 lines
267 B
C
#ifndef PIXELDEFENSE_COMPONENTS_H
|
|
#define PIXELDEFENSE_COMPONENTS_H
|
|
|
|
#include <breeze.h>
|
|
|
|
typedef struct TilePosition {
|
|
BzTile x;
|
|
BzTile y;
|
|
} TilePosition;
|
|
|
|
typedef struct TileSize {
|
|
BzTile w;
|
|
BzTile h;
|
|
} TileSize;
|
|
|
|
#endif //PIXELDEFENSE_COMPONENTS_H
|