This commit is contained in:
parent
a115ed8b39
commit
b31a2e39dc
52 changed files with 1841 additions and 886 deletions
|
@ -1,26 +1,29 @@
|
|||
/*******************/
|
||||
/*** Layer Actor ***/
|
||||
/*******************/
|
||||
/********************/
|
||||
/*** Layer Hazard ***/
|
||||
/********************/
|
||||
|
||||
#ifndef __LAYER_ACTOR_HEADER__
|
||||
#define __LAYER_ACTOR_HEADER__
|
||||
#ifndef __LAYER_HAZARD_HEADER__
|
||||
#define __LAYER_HAZARD_HEADER__
|
||||
|
||||
#include "LayerThing.h"
|
||||
#include "Layer.h"
|
||||
#include "MapEdit.h"
|
||||
#include "GUILayerActor.h"
|
||||
#include "GUILayerHazard.h"
|
||||
#include "Elem.h"
|
||||
|
||||
/*****************************************************************************/
|
||||
class CLayerActor : public CLayerThing
|
||||
class CLayerHazard : public CLayerThing
|
||||
{
|
||||
public:
|
||||
CLayerActor(sLayerDef &Def);
|
||||
CLayerActor(CFile *File,int Version) {Load(File,Version);}
|
||||
CLayerHazard(sLayerDef &Def);
|
||||
CLayerHazard(CFile *File,int Version) {Load(File,Version);}
|
||||
|
||||
void InitLayer(sLayerDef &Def);
|
||||
void InitSubView(CCore *Core);
|
||||
|
||||
void LoadDefThing(const char *Name,sLayerThing &ThisDef);
|
||||
void LoadOldThing(CFile *File,sLayerThing &ThisThing);
|
||||
|
||||
void GUIInit(CCore *Core);
|
||||
void GUIKill(CCore *Core);
|
||||
void GUIUpdate(CCore *Core);
|
||||
|
@ -32,7 +35,7 @@ public:
|
|||
void GUIThingPointUpdate(bool OnlySel=false);
|
||||
|
||||
protected:
|
||||
CGUILayerActor GUIActor;
|
||||
CGUILayerHazard GUIHazard;
|
||||
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue