Fix Lint broken by b662a4577d692329b9ca83525e6039f2ddcd1ac1
[oweals/minetest.git] / src / object_properties.h
index eee3be228f37b886df10cb6d0eb7d383c151f754..908757a644752d8fa0f29df058cd7ac35128df6d 100644 (file)
@@ -33,7 +33,7 @@ struct ObjectProperties
        bool physical;
        bool collideWithObjects;
        float weight;
-       core::aabbox3d<f32> collisionbox;
+       aabb3f collisionbox;
        std::string visual;
        std::string mesh;
        v2f visual_size;
@@ -48,7 +48,12 @@ struct ObjectProperties
        bool automatic_face_movement_dir;
        f32 automatic_face_movement_dir_offset;
        bool backface_culling;
-
+       std::string nametag;
+       video::SColor nametag_color;
+       f32 automatic_face_movement_max_rotation_per_sec;
+       std::string infotext;
+       //! For dropped items, this contains item information.
+       std::string wield_item;
 
        ObjectProperties();
        std::string dump();