Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core7/src/modules/towerdefense/TDCoordinate.h @ 10357

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

don't include CoreIncludes.h in *.h files

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