]> git.localhorst.tv Git - blobs.git/blobdiff - src/creature/Need.hpp
smooth breathing a bit
[blobs.git] / src / creature / Need.hpp
index 2fd4898f3e40aa927b4f6fa9c9ac2c5770694059..67abe3c496d9ceab645625a986920cdee3a29c84 100644 (file)
@@ -26,6 +26,8 @@ struct Need {
        virtual ~Need() noexcept;
 
        void Tick(double dt) noexcept;
+       void Increase(double) noexcept;
+       void Decrease(double) noexcept;
 
        bool IsSatisfied() const noexcept { return value < inconvenient; }
        bool IsInconvenient() const noexcept { return value >= inconvenient && value < critical; }