This commit is contained in:
parent
a44030464c
commit
7764a46abd
5 changed files with 38 additions and 18 deletions
|
@ -24,12 +24,15 @@ class CCore;
|
|||
class CTileSet
|
||||
{
|
||||
public:
|
||||
CTileSet(char *Filename,CCore *Core);
|
||||
CTileSet(char *_Filename,CCore *Core);
|
||||
~CTileSet();
|
||||
|
||||
int Load(CCore *Core);
|
||||
|
||||
int Load(CCore *Core,char *_Filename);
|
||||
char *GetPath() {return(Path);}
|
||||
char *GetFilename() {return(Filename);}
|
||||
|
||||
private:
|
||||
char Path[256];
|
||||
char Filename[256];
|
||||
std::vector<CTile> Tile;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue