This commit is contained in:
Daveo 2001-04-07 21:05:33 +00:00
parent 08c732c29a
commit aefdd396f8
51 changed files with 1467 additions and 682 deletions

View file

@ -8,13 +8,20 @@
#include "LayerThing.h"
#include "Layer.h"
#include "MapEdit.h"
//#include "GUILayerPlatform.h"
#include "GUILayerPlatform.h"
#include "Elem.h"
/*****************************************************************************/
class CLayerPlatform : public CLayerThing
{
public:
enum
{
MoveTypeLinear=0,
MoveTypeCirular
};
CLayerPlatform(sLayerDef &Def);
CLayerPlatform(CFile *File,int Version) {Load(File,Version);}
@ -31,8 +38,11 @@ public:
void GUIThingUpdate(bool OnlySel=false);
void GUIThingPointUpdate(bool OnlySel=false);
protected:
// CGUILayerPlatform GUI;
void SetThingParams(sLayerThing &Thing);
CGUILayerPlatform GUIPlatform;
};