Update renderd7.hpp

This commit is contained in:
2021-07-25 00:47:28 +02:00
committed by GitHub
parent b690ea5822
commit 96dbdf3309

View File

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