X-Git-Url: http://git.localhorst.tv/?p=blobs.git;a=blobdiff_plain;f=src%2Fworld%2FCreatureCreatureCollision.hpp;h=a26b050a8b637a771114261cfa6e5afe4fa27ef3;hp=1a903ec54428b516eb59efe9224001fde2b8cdb5;hb=b4deadd9f4e399207e2530ea39a447c0d9d260a3;hpb=f5fc0c2bd1c0d1e2737d2b4ed49c3de16aa67c67 diff --git a/src/world/CreatureCreatureCollision.hpp b/src/world/CreatureCreatureCollision.hpp index 1a903ec..a26b050 100644 --- a/src/world/CreatureCreatureCollision.hpp +++ b/src/world/CreatureCreatureCollision.hpp @@ -30,10 +30,12 @@ public: creature::Creature &A() noexcept { return *a; } const creature::Creature &A() const noexcept { return *a; } const glm::dvec3 &APos() const noexcept; + const glm::dvec3 &AVel() const noexcept; creature::Creature &B() noexcept { return *b; } const creature::Creature &B() const noexcept { return *b; } const glm::dvec3 &BPos() const noexcept; + const glm::dvec3 &BVel() const noexcept; const glm::dvec3 &Normal() const noexcept { return normal; } double Depth() const noexcept { return depth; }