summaryrefslogtreecommitdiff
path: root/src/main/engine/engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/engine/engine.h')
-rw-r--r--src/main/engine/engine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/engine/engine.h b/src/main/engine/engine.h
index 8ed7a5a..d6fe1d1 100644
--- a/src/main/engine/engine.h
+++ b/src/main/engine/engine.h
@@ -35,7 +35,7 @@ typedef struct {
float ortho_left, ortho_right, ortho_top, ortho_bottom;
} Engine;;
-void engine_init(int width, int height);
+Engine *engine_new(int width, int height);
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);