Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/environments/mover_trigger_mapstart.h

Last change on this file was 10696, checked in by snellen, 17 years ago

added all the new mover classes

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.