]> git.localhorst.tv Git - blobs.git/blobdiff - src/creature/Creature.hpp
allow clicking celestial bodies
[blobs.git] / src / creature / Creature.hpp
index 0012d784a5d913132f3c030e73e66d996978673e..b8171ed73070a8baac5573b8c0d1c561c2427ba7 100644 (file)
@@ -121,9 +121,13 @@ public:
 
        // stats with effects applied
        double Strength() const noexcept;
+       double StrengthFactor() const noexcept;
        double Stamina() const noexcept;
+       double StaminaFactor() const noexcept;
        double Dexerty() const noexcept;
+       double DexertyFactor() const noexcept;
        double Intelligence() const noexcept;
+       double IntelligenceFactor() const noexcept;
        double Lifetime() const noexcept;
        double Fertility() const noexcept;
        double Mutability() const noexcept;
@@ -173,7 +177,7 @@ public:
        Steering &GetSteering() noexcept { return steering; }
        const Steering &GetSteering() const noexcept { return steering; }
 
-       math::AABB CollisionBox() const noexcept;
+       math::AABB CollisionBounds() const noexcept;
        glm::dmat4 CollisionTransform() const noexcept;
 
        glm::dmat4 LocalTransform() noexcept;