feat: fill circle

This commit is contained in:
2025-11-07 10:03:09 +01:00
parent 1fff793de6
commit 42183469ab
3 changed files with 22 additions and 12 deletions

View File

@@ -3,7 +3,7 @@
#include <SDL3/SDL_render.h>
namespace gfx {
void draw_circle(SDL_Renderer *renderer, int center_x, int center_y, int radius);
void draw_circle(SDL_Renderer *renderer, int center_x, int center_y, int radius, bool fill);
}
#endif