This commit is contained in:
Daveo 2000-10-27 00:06:19 +00:00
parent ee30817b75
commit 3d8fc3912c
10 changed files with 231 additions and 13 deletions

35
Utils/MapEdit/TileSet.h Normal file
View file

@ -0,0 +1,35 @@
/*********************/
/*** TileSet Stuph ***/
/*********************/
#ifndef __TILESET_HEADER__
#define __TILESET_HEADER__
#include "stdafx.h"
#include "gl3d.h"
#include <gl\gl.h>
#include <gl\glu.h>
#include <gl\glut.h>
#include <Vector>
/*****************************************************************************/
class CScene;
class CNode;
class CTileSet
{
public:
CTileSet(char *Filename);
~CTileSet();
int Load();
void AddTileToSet(CScene &ThisScene,int Id);
private:
char Filename[256];
std::vector<GLint> Tile;
};
/*****************************************************************************/
#endif