This commit is contained in:
Daveo 2000-12-14 16:01:49 +00:00
parent 557df97386
commit 18d0247548
2 changed files with 74 additions and 0 deletions

View file

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