From b40d44202ed0c79cbb769edba8de57412d07501a Mon Sep 17 00:00:00 2001 From: kotorifan Date: Tue, 21 Apr 2026 23:57:34 +0200 Subject: Enough for today --- src/graphics.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/graphics.h') diff --git a/src/graphics.h b/src/graphics.h index 65c2ddc..62dd874 100644 --- a/src/graphics.h +++ b/src/graphics.h @@ -1,18 +1,18 @@ // graphics.h #ifndef GRAPHICS_H #define GRAPHICS_H +#include "common.h" #include #include -#include "common.h" void init_graphics(uint32_t x, uint32_t y, const char* title); -void close_graphics(void) +void close_graphics(void); void begin_graphics_drawing(void); void end_graphics_drawing(void); void clear_graphics(const Color color); -void draw_graphics_object(const object_t* obj, Color color); -void draw_graphics_objects(const object_t* world, uint32_t count, Color color); -void draw_graphics_info(uint32_t fps, uint32_t objs, uint32_t max_objs); +void draw_graphics_object(const object_t* obj); +void draw_graphics_objects(const object_t* world, uint32_t count); +void draw_graphics_info(uint32_t objs); bool should_close_graphics(void); #endif // GRAPHICS_H -- cgit v1.3