diff options
| author | kotorifan <kotorifan05@gmail.com> | 2026-04-28 00:47:22 +0200 |
|---|---|---|
| committer | kotorifan <kotorifan05@gmail.com> | 2026-04-28 00:47:22 +0200 |
| commit | c176eedfb6de797c09acbff1f61cf62cf1f2c694 (patch) | |
| tree | 89bafd3d16712e72330b0a1f272285fc28ba998a /src/graphics.h | |
| parent | 1ff5ed07b840f4f5de81592f7a9b04debf38c447 (diff) | |
| download | trashbinphysics-c176eedfb6de797c09acbff1f61cf62cf1f2c694.tar.gz | |
Diffstat (limited to 'src/graphics.h')
| -rw-r--r-- | src/graphics.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/graphics.h b/src/graphics.h index 62dd874..8f327e6 100644 --- a/src/graphics.h +++ b/src/graphics.h @@ -1,4 +1,8 @@ -// graphics.h +/** + * @file graphics.h + * @brief Header file for graphics.c + * @date 2026-04-28 +*/ #ifndef GRAPHICS_H #define GRAPHICS_H #include "common.h" @@ -7,10 +11,6 @@ #include <stdint.h> void init_graphics(uint32_t x, uint32_t y, const char* title); -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); void draw_graphics_objects(const object_t* world, uint32_t count); void draw_graphics_info(uint32_t objs); |
