X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fworld%2FEntity.cpp;fp=src%2Fworld%2FEntity.cpp;h=844f74bf5f7be7da0cb7d9545beb157bd9d1f1fe;hb=c04ea5a6f67d446ea29aa2e88dc4c666956d7732;hp=6b23cacf8cccfc1d11aa9f86479be1df3523d174;hpb=bc1cefd505bf1f34639b8839cb337b08310ceb8e;p=blank.git diff --git a/src/world/Entity.cpp b/src/world/Entity.cpp index 6b23cac..844f74b 100644 --- a/src/world/Entity.cpp +++ b/src/world/Entity.cpp @@ -1,6 +1,5 @@ #include "Entity.hpp" -#include "../model/geometry.hpp" #include "../model/Shape.hpp" #include @@ -17,11 +16,14 @@ namespace blank { Entity::Entity() noexcept : shape(nullptr) , model() +, name("anonymous") +, bounds() , velocity(0, 0, 0) , position(0, 0, 0) , chunk(0, 0, 0) , angular_velocity(1.0f, 0.0f, 0.0f, 0.0f) -, rotation(1.0f) { +, rotation(1.0f) +, world_collision(false) { }