This commit is contained in:
Daveo 2001-04-17 16:42:07 +00:00
parent c582c425f8
commit 3149023193
25 changed files with 2648 additions and 0 deletions

View file

@ -0,0 +1,25 @@
/******************/
/*** Layer Item ***/
/******************/
#ifndef __MKLEVEL_LAYER_ITEM_HEADER__
#define __MKLEVEL_LAYER_ITEM_HEADER__
#include "MkLevelLayerThing.h"
#include <List2d.h>
/*****************************************************************************/
class CMkLevelLayerItem : public CMkLevelLayerThing
{
public:
CMkLevelLayerItem(sExpLayerHdr *LayerHdr) : CMkLevelLayerThing(LayerHdr){};
const char *GetTypeName() {return("ITEM");}
void PreProcess(CMkLevel *Core);
void Process(CMkLevel *Core);
int Write(FILE *File,const char *LayerName,const char *MapName);
};
/*****************************************************************************/
#endif