]> git.localhorst.tv Git - blank.git/blobdiff - src/world/EntityState.hpp
use "forces" for entity control and RK4 integrator
[blank.git] / src / world / EntityState.hpp
index 8f74114cb7de0ba2d681b362385698b4d31c77b8..e93fffa6714d324990c349f1b43d2e13c63f5827 100644 (file)
@@ -23,9 +23,6 @@ struct EntityState {
        /// make sure block_pos is within chunk bounds
        void AdjustPosition() noexcept;
 
-       /// do an integration step of dt milliseconds
-       void Update(int dt) noexcept;
-
        /// get a position vector relative to the (0,0,0) chunk
        glm::vec3 AbsolutePosition() const noexcept {
                return glm::vec3(chunk_pos * Chunk::Extent()) + block_pos;