Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/Presentation_FS19/src/modules/pacman/PacmanPink.h @ 12408

Last change on this file since 12408 was 12408, checked in by wiesep, 5 years ago

Merged 3DPacman_FS19

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