Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/contentcreation/pps/FabianLandau/mover/environments/mover_trigger_mapstart.h @ 10017

Last change on this file since 10017 was 4844, checked in by landauf, 17 years ago
File size: 516 bytes
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
12class 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.