From 0e90703b5a44445955560f6f2cddf2ff8dbd1a58 Mon Sep 17 00:00:00 2001 From: Alessandro Iezzi Date: Sat, 17 May 2025 00:24:22 +0200 Subject: Add game.c and game.h Contains the function to draw the field. --- src/main/engine/engine.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/main/engine/engine.h') diff --git a/src/main/engine/engine.h b/src/main/engine/engine.h index 83b8367..cb9e562 100644 --- a/src/main/engine/engine.h +++ b/src/main/engine/engine.h @@ -21,5 +21,6 @@ #define __ENGINE_H__ void engine_init(int width, int height); +void engine_draw_line(int x1, int y1, int x2, int y2); #endif /* __ENGINE_H__ */ -- cgit v1.2.3