updated sdl2 to use sdl2_gfx

This commit is contained in:
herbglitch 2025-02-11 00:57:39 -07:00
parent 66ff7877cb
commit 8166d3fa39
4 changed files with 26 additions and 41 deletions

View file

@ -13,6 +13,18 @@ typedef struct ARC_Circle {
int32_t r;
} ARC_Circle;
typedef struct ARC_FCircle {
float x;
float y;
float r;
} ARC_FCircle;
typedef struct ARC_DCircle {
double x;
double y;
double r;
} ARC_DCircle;
#ifdef __cplusplus
}
#endif