]> git.localhorst.tv Git - orbi.git/blobdiff - src/world/Entity.h
addressed some float issues
[orbi.git] / src / world / Entity.h
index 53087b6972ef8e80cab44debef75c0373b1622a0..a7e45d292b277490c41d9657c68d2082e9f375b0 100644 (file)
@@ -17,11 +17,13 @@ public:
        void Move(Vector<float> delta);
 
 public:
+       Vector<float> pos;
+       Vector<float> vel;
+       Vector<float> acc;
+
        AABB bounds;
        AABB vbox;
        AABB hbox;
-       Vector<float> vel;
-       Vector<float> acc;
 
        float mass = 1.0f;
        float elast = 0.75f;