aboutsummaryrefslogtreecommitdiff
path: root/bvggrabber/utils
diff options
context:
space:
mode:
authorMarkus Holtermann <info@markusholtermann.eu>2014-10-08 01:03:08 +0200
committerMarkus Holtermann <info@markusholtermann.eu>2014-10-08 01:03:08 +0200
commite8f8420ef7c37f60e0b3ccfaaebf64287965520c (patch)
tree2f3737e5295b9e2ea0ca6b32bfc7efa5be6cd597 /bvggrabber/utils
parent913cc85e6467f723f36709f13cd52dd0148fc38b (diff)
downloadbvg-grabber-e8f8420ef7c37f60e0b3ccfaaebf64287965520c.tar.gz
bvg-grabber-e8f8420ef7c37f60e0b3ccfaaebf64287965520c.tar.bz2
bvg-grabber-e8f8420ef7c37f60e0b3ccfaaebf64287965520c.zip
Updated setup.py to point to Python 3.2, 3.3 and 3.4
Diffstat (limited to 'bvggrabber/utils')
0 files changed, 0 insertions, 0 deletions
A_H_ #define S_NODEMETA_H_ #include "cpp_api/s_base.h" #include "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_ */