diff options
Diffstat (limited to 'src/game/ship.h')
-rw-r--r-- | src/game/ship.h | 11 |
1 files changed, 6 insertions, 5 deletions
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__ + |