From a743791e624590e0b41229f28f940db5272b60ba Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Thu, 7 Aug 2008 23:27:42 +0000 Subject: rotating planets, navpoints, network protocol updates, entity event state --- src/game/navpoint.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/game/navpoint.h (limited to 'src/game/navpoint.h') diff --git a/src/game/navpoint.h b/src/game/navpoint.h new file mode 100644 index 0000000..ef60267 --- /dev/null +++ b/src/game/navpoint.h @@ -0,0 +1,27 @@ +/* + game/navpoint.h + This file is part of the Osirion project and is distributed under + the terms and conditions of the GNU General Public License version 2 +*/ + +#ifndef __INCLUDED_GAME_NAVPOINT_H__ +#define __INCLUDED_GAME_NAVPOINT_H__ + +#include "core/entity.h" +#include "math/mathlib.h" + +#include + +namespace game { + +/// a navigation point +class NavPoint : public core::Entity { +public: + NavPoint(); + ~NavPoint(); +}; + +} + +#endif // __INCLUDED_GAME_NAVPOINT_H__ + -- cgit v1.2.3