diff options
Diffstat (limited to 'src/crepe/api/spritesheet.h')
-rw-r--r-- | src/crepe/api/spritesheet.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/crepe/api/spritesheet.h b/src/crepe/api/spritesheet.h new file mode 100644 index 0000000..7f49156 --- /dev/null +++ b/src/crepe/api/spritesheet.h @@ -0,0 +1,21 @@ +#pragma once + + + + +#include "resource.h" +#include <string> + + +namespace crepe::api { + + + +class SpriteSheet : public Resource{ + +public: + SpriteSheet(const std::string&); + ~SpriteSheet(); + +}; +} |