34 lines
694 B
C++
34 lines
694 B
C++
/************************/
|
|
/*** Back Layer Class ***/
|
|
/************************/
|
|
|
|
#ifndef __LAYER_BACK_H__
|
|
#define __LAYER_BACK_H__
|
|
|
|
|
|
/*****************************************************************************/
|
|
class CLayerBack : public CLayerTile
|
|
{
|
|
public:
|
|
CLayerBack(sLayerHdr *Hdr,sTile *TileList,sTri *TriList,sQuad *QuadList,sVtx *VtxList);
|
|
~CLayerBack();
|
|
|
|
void init(DVECTOR &MapPos,int Shift);
|
|
void shutdown();
|
|
void think(DVECTOR &MapPos);
|
|
void render();
|
|
|
|
protected:
|
|
|
|
sLayerShadeHdr *Data;
|
|
int YOfs;
|
|
int BandCount,BandHeight;
|
|
POLY_G4 Band[LAYER_SHADE_RGB_MAX-1];
|
|
|
|
};
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
#endif |