diff options
Diffstat (limited to 'src/main/engine/engine.h')
-rw-r--r-- | src/main/engine/engine.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/engine/engine.h b/src/main/engine/engine.h index 1e26f05..b70c8c2 100644 --- a/src/main/engine/engine.h +++ b/src/main/engine/engine.h @@ -39,6 +39,7 @@ typedef struct { Engine *engine_new(int width, int height); void engine_set_rendering_background(Engine *engine, float r, float g, float b, float a); +void engine_set_rendering_background_c(Engine *engine, Color *color); void engine_draw_circle(float cx, float cy, float r, int num_segments, int outline); void engine_draw_line(float x1, float y1, float x2, float y2); void engine_loop(void); |