Rev | Line | |
---|
[10105] | 1 | #ifndef _TDCoordinate_H__ |
---|
| 2 | #define _TDCoordinate_H__ |
---|
| 3 | |
---|
| 4 | #include "core/CoreIncludes.h" |
---|
| 5 | #include "TDCoordinate.h" |
---|
[10106] | 6 | //#include "towerdefense/TowerDefense.h" |
---|
[10105] | 7 | #include "gametypes/Deathmatch.h" |
---|
| 8 | #include "towerdefense/TowerDefensePrereqs.h" |
---|
| 9 | #include "worldentities/pawns/SpaceShip.h" |
---|
| 10 | namespace orxonox{ |
---|
| 11 | |
---|
| 12 | |
---|
| 13 | //Class to save the Coordinates in a class instead of struct |
---|
| 14 | //Convert 2d coordinates to 3d in order to set waypoints |
---|
[10106] | 15 | class _TowerDefenseExport TDCoordinate: public OrxonoxClass { |
---|
[10105] | 16 | public: |
---|
| 17 | int x; |
---|
| 18 | int y; |
---|
| 19 | |
---|
| 20 | TDCoordinate(); |
---|
| 21 | |
---|
| 22 | Vector3 get3dcoordinate(); |
---|
| 23 | |
---|
| 24 | virtual ~TDCoordinate() {}; |
---|
| 25 | |
---|
| 26 | TDCoordinate(int x, int y); |
---|
| 27 | }; |
---|
| 28 | |
---|
| 29 | |
---|
| 30 | } |
---|
| 31 | |
---|
| 32 | #endif /* _TDCoordinate_H__ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.