mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-22 18:30:27 +01:00
32 lines
987 B
C++
32 lines
987 B
C++
/*
|
|
* This file is generated by Entity Class Compiler, (c) CroTeam 1997-98
|
|
*/
|
|
|
|
#ifndef _EntitiesMP_WorldLink_INCLUDED
|
|
#define _EntitiesMP_WorldLink_INCLUDED 1
|
|
#include <EntitiesMP/Marker.h>
|
|
extern DECL_DLL CEntityPropertyEnumType WorldLinkType_enum;
|
|
enum WorldLinkType {
|
|
WLT_FIXED = 1,
|
|
WLT_RELATIVE = 2,
|
|
};
|
|
DECL_DLL inline void ClearToDefault(WorldLinkType &e) { e = (WorldLinkType)0; } ;
|
|
extern "C" DECL_DLL CDLLEntityClass CWorldLink_DLLClass;
|
|
class CWorldLink : public CMarker {
|
|
public:
|
|
virtual BOOL IsImportant(void) const { return TRUE; };
|
|
DECL_DLL virtual void SetDefaultProperties(void);
|
|
CTString m_strGroup;
|
|
CTFileNameNoDep m_strWorld;
|
|
BOOL m_bStoreWorld;
|
|
enum WorldLinkType m_EwltType;
|
|
|
|
#line 36 "D:/SE1_GPL/Sources/EntitiesMP/WorldLink.es"
|
|
BOOL HandleEvent(const CEntityEvent & ee);
|
|
#define STATE_CWorldLink_Main 1
|
|
BOOL
|
|
#line 52 "D:/SE1_GPL/Sources/EntitiesMP/WorldLink.es"
|
|
Main(const CEntityEvent &__eeInput);
|
|
};
|
|
#endif // _EntitiesMP_WorldLink_INCLUDED
|