We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d59efb1 commit 4341248Copy full SHA for 4341248
include/raylib-aseprite.h
@@ -160,9 +160,15 @@ struct AsepriteTag {
160
ase_tag_t* tag; // The active tag to act upon
161
};
162
163
+/**
164
+ * Slice data for the Aseprite.
165
+ *
166
+ * @see LoadAsepriteSlice()
167
+ * @see https://www.aseprite.org/docs/slices/
168
+ */
169
struct AsepriteSlice {
- char* name;
- Rectangle bounds;
170
+ char* name; // The name of the slice.
171
+ Rectangle bounds; // The rectangle outer bounds for the slice.
172
173
174
/**
0 commit comments