]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/luaentity_common.h
Add ABM required neighbor check
[dragonfireclient.git] / src / luaentity_common.h
index 379249d3fec70289dc8141164f9ae14cc8ad4ee3..bc2871a94e34031dbacd95d947f201b4af31e8ff 100644 (file)
@@ -26,11 +26,15 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 
 struct LuaEntityProperties
 {
+       // Values are BS=1
        bool physical;
        float weight;
        core::aabbox3d<f32> collisionbox;
        std::string visual;
-       core::list<std::string> textures;
+       v2f visual_size;
+       core::array<std::string> textures;
+       v2s16 spritediv;
+       v2s16 initial_sprite_basepos;
 
        LuaEntityProperties();
        std::string dump();