diff options
author | 2025-05-22 18:04:51 +0200 | |
---|---|---|
committer | 2025-05-22 18:04:51 +0200 | |
commit | cec27feccd1d3232ceae2bf284f66071d36cc96a (patch) | |
tree | 26556a4b6a4b6123bdf4bb06edb5c9e815528b9e /src/main/engine/shape/circle.h | |
parent | 9f4a0889287186907332c0186b15802297d807f3 (diff) | |
download | tris-cec27feccd1d3232ceae2bf284f66071d36cc96a.tar.gz tris-cec27feccd1d3232ceae2bf284f66071d36cc96a.zip |
Remove the rendering of circles from the Engine
Diffstat (limited to 'src/main/engine/shape/circle.h')
-rw-r--r-- | src/main/engine/shape/circle.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/engine/shape/circle.h b/src/main/engine/shape/circle.h index f8bb91d..72e69e1 100644 --- a/src/main/engine/shape/circle.h +++ b/src/main/engine/shape/circle.h @@ -29,5 +29,6 @@ typedef struct { } Circle; Circle *engine_circle_new(float cx, float cy, float r, int num_segments, int outline); +void engine_render_circle(Circle *circle); #endif /* __CIRCLE_H__ */ |