diff options
Diffstat (limited to 'src/main/engine/shape/circle.h')
-rw-r--r-- | src/main/engine/shape/circle.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/engine/shape/circle.h b/src/main/engine/shape/circle.h index 72e69e1..67c3a46 100644 --- a/src/main/engine/shape/circle.h +++ b/src/main/engine/shape/circle.h @@ -20,12 +20,15 @@ #ifndef __CIRCLE_H__ #define __CIRCLE_H__ +#include "../domain/color.h" + typedef struct { int outline; float cx; float cy; float r; int num_segments; + Color *color; } Circle; Circle *engine_circle_new(float cx, float cy, float r, int num_segments, int outline); |