diff options
author | axtloss <axtlos@getcryst.al> | 2024-02-27 01:44:26 +0100 |
---|---|---|
committer | axtloss <axtlos@getcryst.al> | 2024-02-27 01:44:26 +0100 |
commit | c9b119217829f976a7830a0555650401cf9df2cb (patch) | |
tree | ed0aa12813af1091fe1096fb62b3495dfd0966d8 /fbwarn/src/BVGTypes.h | |
parent | ae895bf260f2015816988bffe429f06faf653707 (diff) | |
download | fsverify-c9b119217829f976a7830a0555650401cf9df2cb.tar.gz fsverify-c9b119217829f976a7830a0555650401cf9df2cb.tar.bz2 |
add functionality to read from bvg file
Diffstat (limited to 'fbwarn/src/BVGTypes.h')
-rw-r--r-- | fbwarn/src/BVGTypes.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fbwarn/src/BVGTypes.h b/fbwarn/src/BVGTypes.h index be7669f..95e1dd8 100644 --- a/fbwarn/src/BVGTypes.h +++ b/fbwarn/src/BVGTypes.h @@ -1,6 +1,11 @@ #include <raylib.h> #include <stdbool.h> +typedef struct BVGIMG { + int width; + int height; +} BVGIMG; + typedef struct BVGRectangle { Rectangle rayrectangle; bool fill; |