#ifndef _SMCoord_H__ #define _SMCoord_H__ #include "core/CoreIncludes.h" #include "gametypes/Deathmatch.h" namespace orxonox { class _OrxonoxExport SMCoord { public: SMCoord(); SMCoord(int x); virtual void set(int index); virtual int getIndex(); private: int index; }; } #endif