00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef __STARTPOINT_H__
00014 #define __STARTPOINT_H__
00015
00016
00017
00018 #include <ltbasedefs.h>
00019 #include <ltengineobjects.h>
00020
00021
00023 class StartPoint : public BaseClass
00024 {
00025 public:
00026
00027 StartPoint();
00028 ~StartPoint();
00029
00030
00031
00032 uint32 EngineMessageFn(uint32 messageID, void *pData, float fData);
00033
00034
00035
00036 private:
00037
00038
00039 uint32 PreCreate(void *pData, float fData);
00040
00041
00042
00043 void ReadProps(ObjectCreateStruct* pStruct);
00044 };
00045
00046
00047 #endif // __STARTPOINT_H__