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
{
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