From 28ba97bdd8fb6ca352dc49dba01a66bd155ad523 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sat, 15 Nov 2008 19:24:55 +0000 Subject: entity extensions --- src/client/clientext.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/client/clientext.h (limited to 'src/client/clientext.h') diff --git a/src/client/clientext.h b/src/client/clientext.h new file mode 100644 index 0000000..d76546d --- /dev/null +++ b/src/client/clientext.h @@ -0,0 +1,30 @@ +/* + client/clientext.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_CLIENT_CLIENTEXT_H__ +#define __INCLUDED_CLIENT_CLIENTEXT_H__ + +#include "core/extension.h" + +namespace client +{ + +/// the client extension of an entity +class ClientExt :public core::Extension { +public: + ClientExt(core::Entity *entity); + ~ClientExt(); + + virtual void frame(float elapsed); + +private: + +}; + +} // namespace client + +#endif // __INCLUDED_CLIENT_CLIENTEXT_H__ + -- cgit v1.2.3