feat: split code

This commit is contained in:
2025-11-05 20:13:07 +01:00
parent d9156ee137
commit 1fff793de6
3 changed files with 48 additions and 28 deletions

9
include/gfx.hpp Normal file
View File

@@ -0,0 +1,9 @@
#ifndef GFX_UTILS_HPP
#define GFX_UTILS_HPP
#include <SDL3/SDL_render.h>
namespace gfx {
void draw_circle(SDL_Renderer *renderer, int center_x, int center_y, int radius);
}
#endif