Update renderd7.hpp

This commit is contained in:
tobid7 2021-07-25 00:47:28 +02:00 committed by GitHub
parent b690ea5822
commit 96dbdf3309
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,10 +47,16 @@ namespace RenderD7
class Sheet class Sheet
{ {
public: public:
/// Construct sheet
Sheet(); Sheet();
// Deconstruct sheet
~Sheet(); ~Sheet();
/// Load a Sritesheet
/// path: Path to the Spritesheet (.t3x)
Result Load(const char *path); Result Load(const char *path);
/// Unload the Spritesheet
void Free(); void Free();
// The Spritesheet
C2D_SpriteSheet spritesheet; C2D_SpriteSheet spritesheet;
}; };
class Image class Image