diff options
author | axtloss <axtlos@getcryst.al> | 2024-02-25 14:42:49 +0100 |
---|---|---|
committer | axtloss <axtlos@getcryst.al> | 2024-02-25 14:42:49 +0100 |
commit | 997368fe5f7ae8651982d0ba509bb54051b54e34 (patch) | |
tree | 7aa0e232ebf095b26981cc206affe6ed3519818c /fbwarn/src/BVGTypes.h | |
parent | 507d58d48f3e99f5fd45171cdbadd9c690f47fe1 (diff) | |
download | fsverify-997368fe5f7ae8651982d0ba509bb54051b54e34.tar.gz fsverify-997368fe5f7ae8651982d0ba509bb54051b54e34.tar.bz2 |
Expand rectangle function with fill arg
Diffstat (limited to 'fbwarn/src/BVGTypes.h')
-rw-r--r-- | fbwarn/src/BVGTypes.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/fbwarn/src/BVGTypes.h b/fbwarn/src/BVGTypes.h new file mode 100644 index 0000000..1ed1919 --- /dev/null +++ b/fbwarn/src/BVGTypes.h @@ -0,0 +1,8 @@ +#include <raylib.h> +#include <stdbool.h> +typedef struct BVGRectangle { + Rectangle rayrectangle; + Color color; + bool fill; + float lineThickness; +} BVGRectangle; |