Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2007-10-21 15:18:50 +0000
committerStijn Buys <ingar@osirion.org>2007-10-21 15:18:50 +0000
commit97cbb7514135ec81803e746f0b549e9f95abbecc (patch)
tree6d61b17ed1485a5488522dd41011a4225cde18b0 /src/game/player.h
parent783545505aa51e4f908932fffb1f8362ad898d44 (diff)
added basic file loader
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__