diff options
author | Weblate <42@minetest.ru> | 2013-06-01 13:18:52 +0200 |
---|---|---|
committer | Weblate <42@minetest.ru> | 2013-06-01 13:18:52 +0200 |
commit | 1dfc2e02b3c358af4bb20bb3cb60ac7bd3ed1124 (patch) | |
tree | 54660f353f3342f89b6259ea6a5dfedfa20dc16f /src/scriptapi_node.h | |
parent | ec039a3d123120f9918812b13f5971e94546b9af (diff) | |
parent | 64627817fcca52f20948c24b60ce192b218f6ce2 (diff) | |
download | minetest-1dfc2e02b3c358af4bb20bb3cb60ac7bd3ed1124.tar.gz minetest-1dfc2e02b3c358af4bb20bb3cb60ac7bd3ed1124.tar.bz2 minetest-1dfc2e02b3c358af4bb20bb3cb60ac7bd3ed1124.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'src/scriptapi_node.h')
-rw-r--r-- | src/scriptapi_node.h | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/src/scriptapi_node.h b/src/scriptapi_node.h deleted file mode 100644 index 665b58bfc..000000000 --- a/src/scriptapi_node.h +++ /dev/null @@ -1,55 +0,0 @@ -/* -Minetest-c55 -Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com> - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by -the Free Software Foundation; either version 2.1 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public License along -with this program; if not, write to the Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -*/ - -#ifndef LUA_NODE_H_ -#define LUA_NODE_H_ - -#include <iostream> -#include <map> - -extern "C" { -#include <lua.h> -} - -#include "content_sao.h" -#include "map.h" - -/*****************************************************************************/ -/* Minetest interface */ -/*****************************************************************************/ -bool scriptapi_node_on_punch(lua_State *L, v3s16 p, MapNode node, - ServerActiveObject *puncher); -bool scriptapi_node_on_dig(lua_State *L, v3s16 p, MapNode node, - ServerActiveObject *digger); -void scriptapi_node_on_construct(lua_State *L, v3s16 p, MapNode node); -void scriptapi_node_on_destruct(lua_State *L, v3s16 p, MapNode node); -void scriptapi_node_after_destruct(lua_State *L, v3s16 p, MapNode node); -bool scriptapi_node_on_timer(lua_State *L, v3s16 p, MapNode node, f32 dtime); -void scriptapi_node_on_receive_fields(lua_State *L, v3s16 p, - const std::string &formname, - const std::map<std::string, std::string> &fields, - ServerActiveObject *sender); - -extern struct EnumString es_DrawType[]; -extern struct EnumString es_ContentParamType[]; -extern struct EnumString es_ContentParamType2[]; -extern struct EnumString es_LiquidType[]; -extern struct EnumString es_NodeBoxType[]; - -#endif /* LUA_NODE_H_ */ |