Files
luna/include/gfx.hpp
2025-11-07 10:03:09 +01:00

10 lines
205 B
C++

#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, bool fill);
}
#endif