Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/WorldMap_HS18/src/orxonox/controllers/SMCoord.h @ 12110

Last change on this file since 12110 was 12110, checked in by linggj, 5 years ago

some changes

File size: 441 bytes
Line 
1#ifndef _SMCoord_H__
2#define _SMCoord_H__
3
4#include "core/CoreIncludes.h"
5#include "gametypes/Deathmatch.h"
6
7namespace orxonox
8{
9
10        class _OrxonoxExport SMCoord
11    {
12        public:
13            SMCoord();
14            SMCoord(int x);
15             void set(int index);
16            virtual int getIndex();
17            virtual Vector3 get3dcoordinate();
18            virtual ~SMCoord();
19
20
21        private:
22            int index;
23    };
24
25
26}
27#endif
Note: See TracBrowser for help on using the repository browser.