aboutsummaryrefslogtreecommitdiffstats
path: root/src/graphics.h
diff options
context:
space:
mode:
authorkotorifan <kotorifan05@gmail.com>2026-04-21 23:57:34 +0200
committerkotorifan <kotorifan05@gmail.com>2026-04-21 23:57:34 +0200
commitb40d44202ed0c79cbb769edba8de57412d07501a (patch)
tree00109eba9702b3d117ca9ea3fc9ff9163a3dabba /src/graphics.h
parenta2c8cd78cdb0532496ee6487878b7c52a782e871 (diff)
downloadtrashbinphysics-b40d44202ed0c79cbb769edba8de57412d07501a.tar.gz
Enough for today
Diffstat (limited to 'src/graphics.h')
-rw-r--r--src/graphics.h10
1 files changed, 5 insertions, 5 deletions
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 <raylib.h>
#include <stdint.h>
-#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