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
RevLine 
[12106]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);
[12110]15             void set(int index);
[12106]16            virtual int getIndex();
[12110]17            virtual Vector3 get3dcoordinate();
18            virtual ~SMCoord();
[12106]19
[12110]20
[12106]21        private:
22            int index;
23    };
24
25
26}
27#endif
Note: See TracBrowser for help on using the repository browser.