13 lines
196 B
C
13 lines
196 B
C
#ifndef GUARD_INVADERDEF_H
|
|
#define GUARD_INVADERDEF_H
|
|
|
|
#include "mingl/graphics/rgbacolor.h"
|
|
#include "utils.h"
|
|
|
|
struct InvaderTypeDef {
|
|
nsGraphics::RGBAcolor color;
|
|
unsigned points;
|
|
};
|
|
|
|
#endif
|