8 lines
187 B
C++
8 lines
187 B
C++
#ifndef GFX_UTILS_HPP
|
|
#define GFX_UTILS_HPP
|
|
#include <SDL3/SDL_render.h>
|
|
|
|
void draw_circle(SDL_Renderer *renderer, int center_x, int center_y, int radius, bool fill);
|
|
|
|
#endif
|