X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fcommon%2FCapsule.h;h=5aa5f344fd6c09711f2c53f07cdc27507026e9f1;hb=0911d263c10cca314305799d5b839ee9653cac0b;hp=bf99cfa1ad376660c322c97640515ec9b71f4dce;hpb=c5e56f45e08fcc6c4dceb586ce3d671a3f3907ab;p=l2e.git diff --git a/src/common/Capsule.h b/src/common/Capsule.h index bf99cfa..5aa5f34 100644 --- a/src/common/Capsule.h +++ b/src/common/Capsule.h @@ -10,7 +10,7 @@ namespace graphics { } #include "../common/Stats.h" -#include "../geometry/Vector.h" +#include "../math/Vector.h" #include @@ -39,7 +39,7 @@ public: int MaxClass() const { return maxClass; } int CurrentClass() const { return curClass; } - const geometry::Vector &AlignmentOffset() const { return alignmentCursor; } + const math::Vector &AlignmentOffset() const { return alignmentCursor; } const graphics::Sprite *AlignmentSprite() const { return alignmentSprite; } void UpgradeClass(); @@ -106,7 +106,7 @@ private: const char *name; const char *alignment; - geometry::Vector alignmentCursor; + math::Vector alignmentCursor; const graphics::Sprite *alignmentSprite; int maxHealth; @@ -126,4 +126,4 @@ private: } -#endif /* COMMON_CAPSULE_H_ */ +#endif