SBSPSS/Utils/MkLevel/Layers/MkLevelLayerPlatform.h
2001-04-23 14:51:44 +00:00

28 lines
744 B
C++

/**********************/
/*** Layer Platform ***/
/**********************/
#ifndef __MKLEVEL_LAYER_PLATFORM_HEADER__
#define __MKLEVEL_LAYER_PLATFORM_HEADER__
#include "MkLevelLayerThing.h"
#include <List2d.h>
/*****************************************************************************/
class CMkLevelLayerPlatform : public CMkLevelLayerThing
{
public:
CMkLevelLayerPlatform(sExpLayerHdr *LayerHdr) : CMkLevelLayerThing(LayerHdr){};
const char *GetTypeName() {return("PLATFORM");}
void PreProcess(CMkLevel *Core);
void Process(CMkLevel *Core);
int Write(FILE *File,const char *LayerName,const char *MapName);
CList<int> RemapTable;
};
/*****************************************************************************/
#endif