Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/modules/towerdefense/TDCoordinate.h @ 10624

Last change on this file since 10624 was 10624, checked in by landauf, 9 years ago

merged branch core7 back to trunk

  • Property svn:eol-style set to native
File size: 811 bytes
Line 
1#ifndef _TDCoordinate_H__
2#define _TDCoordinate_H__
3
4#include "TDCoordinate.h"
5//#include "towerdefense/TowerDefense.h"
6#include "gametypes/Deathmatch.h"
7#include "towerdefense/TowerDefensePrereqs.h"
8#include "worldentities/pawns/SpaceShip.h"
9namespace orxonox
10{
11
12//Class to save the Coordinates in a class instead of struct
13//Convert 2d coordinates to 3d in order to set waypoints
14    class _TowerDefenseExport TDCoordinate
15    {
16        public:
17            TDCoordinate();
18            TDCoordinate(int x, int y);
19            virtual ~TDCoordinate() {};
20            virtual void Set(int x, int y);
21            virtual int GetX();
22            virtual int GetY();
23            virtual Vector3 get3dcoordinate(); 
24
25        private:
26            int _x;
27            int _y;
28    };
29
30}
31
32#endif /* _TDCoordinate_H__ */
Note: See TracBrowser for help on using the repository browser.