This commit is contained in:
Daveo 2001-02-02 18:39:16 +00:00
parent 524150e0a8
commit fd240a847f
2 changed files with 114 additions and 0 deletions

View file

@ -0,0 +1,29 @@
/******************************/
/*** Solid Tile Layer Class ***/
/******************************/
#ifndef __LAYER_TILE_SOLID_H__
#define __LAYER_TILE_SOLID_H__
/*****************************************************************************/
class CLayerTileSolid : public CLayerTile
{
public:
CLayerTileSolid(sLayerHdr *Hdr,sTile *TileList,sTri *TriList,sQuad *QuadList,sVtx *VtxList);
~CLayerTileSolid();
void init(DVECTOR &MapPos,int Shift,int Width,int Height);
void shutdown();
void think(DVECTOR &MapPos);
void render();
protected:
};
/*****************************************************************************/
#endif