Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rubberduckycooly
GitHub Repository: rubberduckycooly/Sonic-1-2-2013-Decompilation
Path: blob/main/RSDKv4/Sprite.hpp
817 views
1
#ifndef SPRITE_H
2
#define SPRITE_H
3
4
int AddGraphicsFile(const char *filePath);
5
void RemoveGraphicsFile(const char *filePath, int sheetID);
6
7
int LoadBMPFile(const char *filePath, byte sheetID);
8
int LoadGIFFile(const char *filePath, byte sheetID);
9
int LoadPVRFile(const char *filePath, byte sheetID);
10
11
void ReadGifPictureData(int width, int height, bool interlaced, byte *gfxData, int offset);
12
13
#endif // !SPRITE_H
14
15