Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/3DPacman_FS19/src/modules/pacman/PacmanRandom.h @ 12304

Last change on this file since 12304 was 12304, checked in by peterf, 5 years ago

added several pacmans

File size: 682 bytes
Line 
1#ifndef _PacmanRandom_H__
2#define _PacmanRandom_H__
3
4#include "PacmanGhost.h"
5
6namespace orxonox {
7
8  class _OrxonoxExport PacmanRandom : public PacmanGhost{
9
10                public:
11                        PacmanRandom(Context* context);
12
13                        virtual void tick(float dt) override; //!< Defines which actions the AutonomousDrone has to take in each tick.
14
15                        virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode) override;
16                        void setnewTarget(int firstdec);
17            void setnewTarget(int firstdec, int seconddec);
18            void setnewTarget(int firstdec, int seconddec, int thirddec);
19            void setnewTarget(int firstdec, int seconddec, int thirddec, int fourthdec);
20  };
21
22
23}
24
25
26#endif
Note: See TracBrowser for help on using the repository browser.