From a22c967a59a1e17663790db72f2d24edafc6199a Mon Sep 17 00:00:00 2001 From: Alessandro Iezzi Date: Thu, 22 May 2025 18:59:46 +0200 Subject: Remove the rendiring process of the lines I've moved that inside the game rendering function. --- src/main/engine/shape/circle.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/main/engine/shape/circle.h') 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); -- cgit v1.2.3