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.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/core/clientstate.h (limited to 'src/core/clientstate.h') diff --git a/src/core/clientstate.h b/src/core/clientstate.h new file mode 100644 index 0000000..ef912ed --- /dev/null +++ b/src/core/clientstate.h @@ -0,0 +1,29 @@ +/* + core/clientstate.h + This file is part of the Osirion project and is distributed under + the terms of the GNU General Public License version 2. +*/ + +#ifndef __INCLUDED_CORE_CLIENTSTATE_H__ +#define __INCLUDED_CORE_CLIENTSTATE_H__ + +#include + +namespace core +{ + +class ClientState { +public: + ClientState(); + ~ClientState(); + + std::string name; + unsigned int id; + bool dirty; +}; + +extern ClientState localstate; + +} + +#endif // __INCLUDED_CORE_CLIENTSTATE_H__ -- cgit v1.2.3