From bac8343bbc9f1e4cf97a561c732054539f21f03d Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Wed, 30 Jan 2008 17:35:04 +0000 Subject: accomodate the new modules --- src/game/ship.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'src/game/ship.h') diff --git a/src/game/ship.h b/src/game/ship.h index 8c65264..d420f67 100644 --- a/src/game/ship.h +++ b/src/game/ship.h @@ -4,11 +4,11 @@ the terms and conditions of the GNU General Public License version 2 */ -#ifndef __INCLUDED_SHIP_H__ -#define __INCLUDED_SHIP_H__ +#ifndef __INCLUDED_GAME_SHIP_H__ +#define __INCLUDED_GAME_SHIP_H__ // project headers -#include "common/vector3f.h" +#include "math/vector3f.h" namespace game { @@ -22,7 +22,7 @@ public: void update(float elapsed); /// location of the ship in space - common::Vector3f location; + math::Vector3f location; /// speed vector in units/second float speed; @@ -56,4 +56,5 @@ private: } // namespace game -#endif // __INCLUDED_SHIP_H__ +#endif // __INCLUDED_GAME_SHIP_H__ + -- cgit v1.2.3