Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

Story Mode Controller added again as a controllabel entitz

File size: 368 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            virtual void set(int index);
16            virtual int getIndex();
17
18        private:
19            int index;
20    };
21
22
23}
24#endif
Note: See TracBrowser for help on using the repository browser.