]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/script/common/c_content.h
Merge branch 'master' of https://github.com/minetest/minetest
[dragonfireclient.git] / src / script / common / c_content.h
index a7b8709c623ae5b797040024ed2b115f29c6618c..a6b96c0122913cf5787297b9092d20265ab057e7 100644 (file)
@@ -101,6 +101,7 @@ void               push_hit_params           (lua_State *L,
 ItemStack          read_item                 (lua_State *L, int index, IItemDefManager *idef);
 
 struct TileAnimationParams read_animation_definition(lua_State *L, int index);
+void push_animation_definition(lua_State *L, struct TileAnimationParams anim);
 
 ToolCapabilities   read_tool_capabilities    (lua_State *L, int table);
 void               push_tool_capabilities    (lua_State *L,
@@ -120,6 +121,9 @@ void               read_object_properties    (lua_State *L, int index,
 void               push_object_properties    (lua_State *L,
                                               ObjectProperties *prop);
 
+void               push_inventory               (lua_State *L,
+                                              Inventory *inventory);
+
 void               push_inventory_list       (lua_State *L,
                                               const InventoryList &invlist);
 void               push_inventory_lists      (lua_State *L,
@@ -204,3 +208,5 @@ void push_hud_element          (lua_State *L, HudElement *elem);
 bool read_hud_change           (lua_State *L, HudElementStat &stat, HudElement *elem, void **value);
 
 void push_collision_move_result(lua_State *L, const collisionMoveResult &res);
+
+void push_physics_override        (lua_State *L, float speed, float jump, float gravity, bool sneak, bool sneak_glitch, bool new_move);