Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/player.cc')
-rw-r--r--src/core/player.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/player.cc b/src/core/player.cc
index 5eae8ec..1734d9b 100644
--- a/src/core/player.cc
+++ b/src/core/player.cc
@@ -9,18 +9,20 @@
namespace core
{
+Player localplayer;
+
Player::Player()
{
id = 0;
name.clear();
dirty = false;
+
+ controled=0;
}
Player::~Player()
{
}
-Player localplayer;
-
}