Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/player.h')
-rw-r--r--src/game/player.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/game/player.h b/src/game/player.h
index 4c75206..a3850a5 100644
--- a/src/game/player.h
+++ b/src/game/player.h
@@ -3,18 +3,23 @@
the terms and conditions of the GNU General Public License version 2
*/
-#ifndef __INCLUDED_PLAyER_H__
-#define __INCLUDED_PLAyER_H__
+#ifndef __INCLUDED_PLAYER_H__
+#define __INCLUDED_PLAYER_H__
#include <string>
+namespace game {
+
/// A player in the game
class Player {
public:
Player();
~Player();
+ /// name of the player
std::string name;
};
-#endif // __INCLUDED_PLAyER_H__
+} // namespace game
+
+#endif // __INCLUDED_PLAYER_H__