Update renderd7.hpp
This commit is contained in:
parent
b690ea5822
commit
96dbdf3309
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user