|
Last change
on this file since 12373 was
12357,
checked in by peterf, 6 years ago
|
|
Improved formatting and added some comments to make the code more precise
|
|
File size:
534 bytes
|
| Rev | Line | |
|---|
| [12304] | 1 | #ifndef _PacmanPink_H__ |
|---|
| 2 | #define _PacmanPink_H__ |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | #include "PacmanGhost.h" |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | namespace 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 | |
|---|
| [12319] | 19 | Vector3 pinkPos; |
|---|
| 20 | |
|---|
| 21 | void nextMove(Vector3 pinkPosP, Vector3 playerPos, Vector3 pointToAvoidP11=Vector3(0,0,0)); |
|---|
| 22 | |
|---|
| [12304] | 23 | }; |
|---|
| 24 | |
|---|
| 25 | } |
|---|
| 26 | |
|---|
| 27 | #endif |
|---|
Note: See
TracBrowser
for help on using the repository browser.