12 lines
187 B
C
12 lines
187 B
C
#ifndef PIXELDEFENSE_COMPONENTS_H
|
|
#define PIXELDEFENSE_COMPONENTS_H
|
|
|
|
#include <breeze.h>
|
|
|
|
typedef struct {
|
|
f32 x;
|
|
f32 y;
|
|
} Position, Velocity;
|
|
|
|
#endif //PIXELDEFENSE_COMPONENTS_H
|