X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Fobject_properties.h;h=4b7f9a5eb4f5c8501bf1d31f497dd73d08e8b24e;hb=4feea0ac6845ea025e8784f63f48e567d1d24c22;hp=bde38bd66554dbb607900ca2c85db9a3ccbd383e;hpb=6d0ea26c2d62c3774ff384cf1bfc2a3372b49a3b;p=dragonfireclient.git diff --git a/src/object_properties.h b/src/object_properties.h index bde38bd66..4b7f9a5eb 100644 --- a/src/object_properties.h +++ b/src/object_properties.h @@ -24,24 +24,29 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "irrlichttypes_bloated.h" #include #include +#include struct ObjectProperties { // Values are BS=1 s16 hp_max; bool physical; + bool collideWithObjects; float weight; core::aabbox3d collisionbox; std::string visual; std::string mesh; v2f visual_size; - core::array textures; - core::array colors; + std::vector textures; + std::vector colors; v2s16 spritediv; v2s16 initial_sprite_basepos; bool is_visible; bool makes_footstep_sound; float automatic_rotate; + f32 stepheight; + bool automatic_face_movement_dir; + f32 automatic_face_movement_dir_offset; ObjectProperties();