2001-04-17 18:42:07 +02:00
|
|
|
/**********************/
|
|
|
|
/*** 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);
|
2001-06-25 17:54:07 +02:00
|
|
|
int Write(CMkLevel *Core,FILE *File,const char *LayerName);
|
2001-04-17 18:42:07 +02:00
|
|
|
|
2001-04-23 16:51:44 +02:00
|
|
|
CList<int> RemapTable;
|
|
|
|
|
2001-04-17 18:42:07 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
#endif
|