Line | |
---|
1 | #ifndef _PacmanRandom_H__ |
---|
2 | #define _PacmanRandom_H__ |
---|
3 | |
---|
4 | #include "PacmanGhost.h" |
---|
5 | |
---|
6 | namespace 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.