SBSPSS/Utils/MapEdit/LayerPlatform.h
2001-04-01 20:22:49 +00:00

41 lines
964 B
C++

/*******************/
/*** Layer Platform ***/
/*******************/
#ifndef __LAYER_PLATFORM_HEADER__
#define __LAYER_PLATFORM_HEADER__
#include "LayerThing.h"
#include "Layer.h"
#include "MapEdit.h"
//#include "GUILayerPlatform.h"
#include "Elem.h"
/*****************************************************************************/
class CLayerPlatform : public CLayerThing
{
public:
CLayerPlatform(sLayerDef &Def);
CLayerPlatform(CFile *File,int Version) {Load(File,Version);}
void InitLayer(sLayerDef &Def);
void InitSubView(CCore *Core);
void GUIInit(CCore *Core);
void GUIKill(CCore *Core);
void GUIUpdate(CCore *Core);
void GUIChanged(CCore *Core);
bool GUIReady();
void GUIThingDefClear();
void GUIThingUpdate(bool OnlySel=false);
void GUIThingPointUpdate(bool OnlySel=false);
protected:
// CGUILayerPlatform GUI;
};
/*****************************************************************************/
#endif