aboutsummaryrefslogtreecommitdiff
path: root/src/client/render/core.h
diff options
context:
space:
mode:
authorParamat <paramat@users.noreply.github.com>2018-05-07 03:31:55 +0100
committerGitHub <noreply@github.com>2018-05-07 03:31:55 +0100
commit4ccd18d5ec7dec02366a2221526b2fc0ed7b16b6 (patch)
tree396a24b1c60377cdfb542797cfc71a5b74d17a28 /src/client/render/core.h
parentd99a033fd692546a29cfd4728dbbc5d26ac5c37f (diff)
downloadminetest-4ccd18d5ec7dec02366a2221526b2fc0ed7b16b6.tar.gz
minetest-4ccd18d5ec7dec02366a2221526b2fc0ed7b16b6.tar.bz2
minetest-4ccd18d5ec7dec02366a2221526b2fc0ed7b16b6.zip
Mgv7: Code cleanup (#7299)
Diffstat (limited to 'src/client/render/core.h')
0 files changed, 0 insertions, 0 deletions
an> "cpp_api/s_item.h" #include "irr_v3d.h" struct ItemStack; class ScriptApiNodemeta : virtual public ScriptApiBase, public ScriptApiItem { public: ScriptApiNodemeta(); virtual ~ScriptApiNodemeta(); // Return number of accepted items to be moved int nodemeta_inventory_AllowMove(v3s16 p, const std::string &from_list, int from_index, const std::string &to_list, int to_index, int count, ServerActiveObject *player); // Return number of accepted items to be put int nodemeta_inventory_AllowPut(v3s16 p, const std::string &listname, int index, ItemStack &stack, ServerActiveObject *player); // Return number of accepted items to be taken int nodemeta_inventory_AllowTake(v3s16 p, const std::string &listname, int index, ItemStack &stack, ServerActiveObject *player); // Report moved items void nodemeta_inventory_OnMove(v3s16 p, const std::string &from_list, int from_index, const std::string &to_list, int to_index, int count, ServerActiveObject *player); // Report put items void nodemeta_inventory_OnPut(v3s16 p, const std::string &listname, int index, ItemStack &stack, ServerActiveObject *player); // Report taken items void nodemeta_inventory_OnTake(v3s16 p, const std::string &listname, int index, ItemStack &stack, ServerActiveObject *player); private: }; #endif /* S_NODEMETA_H_ */