| Line | |
|---|
| 1 | /*! |
|---|
| 2 | * @file mover_trigger_mapstart.h |
|---|
| 3 | * Gets triggered when the map starts. |
|---|
| 4 | */ |
|---|
| 5 | |
|---|
| 6 | #ifndef _MOVER_TRIGGER_MAPSTART_H |
|---|
| 7 | #define _MOVER_TRIGGER_MAPSTART_H |
|---|
| 8 | |
|---|
| 9 | #include "mover_trigger.h" |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | class MapstartTrigger : public MoverTrigger |
|---|
| 13 | { |
|---|
| 14 | ObjectListDeclaration(MapstartTrigger); |
|---|
| 15 | |
|---|
| 16 | public: |
|---|
| 17 | MapstartTrigger(const TiXmlElement* root = NULL); |
|---|
| 18 | virtual void loadParams(const TiXmlElement* root); |
|---|
| 19 | |
|---|
| 20 | private: |
|---|
| 21 | virtual bool checkIsTriggered(); |
|---|
| 22 | bool bInit; |
|---|
| 23 | }; |
|---|
| 24 | |
|---|
| 25 | |
|---|
| 26 | #endif |
|---|
| 27 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.