From 48aa068b036f565d6b94d4207242066ba655afe4 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sat, 9 Feb 2008 17:48:16 +0000 Subject: entities, step 1 --- src/core/clientstate.cc | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/core/clientstate.cc (limited to 'src/core/clientstate.cc') diff --git a/src/core/clientstate.cc b/src/core/clientstate.cc new file mode 100644 index 0000000..19daab9 --- /dev/null +++ b/src/core/clientstate.cc @@ -0,0 +1,26 @@ +/* + core/clientstate.cc + This file is part of the Osirion project and is distributed under + the terms of the GNU General Public License version 2. +*/ + +#include "core/clientstate.h" + +namespace core +{ + +ClientState::ClientState() +{ + dirty = false; + id = 0; + name.clear(); +} + +ClientState::~ClientState() +{ +} + +ClientState localstate; + +} + -- cgit v1.2.3