2001-04-17 18:42:07 +02:00
|
|
|
/****************/
|
|
|
|
/*** Layer 3d ***/
|
|
|
|
/****************/
|
|
|
|
|
|
|
|
#ifndef __MKLEVEL_LAYER_3D__HEADER__
|
|
|
|
#define __MKLEVEL_LAYER_3D__HEADER__
|
|
|
|
|
|
|
|
#include "MkLevelLayerTile.h"
|
|
|
|
#include <List2d.h>
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
class CMkLevelLayer3d : public CMkLevelLayerTile
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CMkLevelLayer3d(sExpLayerHdr *LayerHdr) : CMkLevelLayerTile(LayerHdr){};
|
|
|
|
|
|
|
|
void PreProcess(CMkLevel *Core);
|
2001-04-19 17:12:21 +02:00
|
|
|
// void Process(CMkLevel *Core);
|
|
|
|
// int Write(FILE *File,const char *LayerName,const char *MapName);
|
2001-04-17 18:42:07 +02:00
|
|
|
protected:
|
2001-04-19 17:12:21 +02:00
|
|
|
// void ProcessVtxList(vector<sVtx> const &In,vector<sVtx> &Out);
|
2001-04-17 18:42:07 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
#endif
|