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_craft.h | |
parent | ec039a3d123120f9918812b13f5971e94546b9af (diff) | |
parent | 64627817fcca52f20948c24b60ce192b218f6ce2 (diff) | |
download | dragonfireclient-1dfc2e02b3c358af4bb20bb3cb60ac7bd3ed1124.tar.xz |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'src/scriptapi_craft.h')
-rw-r--r-- | src/scriptapi_craft.h | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/src/scriptapi_craft.h b/src/scriptapi_craft.h deleted file mode 100644 index f28989fd9..000000000 --- a/src/scriptapi_craft.h +++ /dev/null @@ -1,51 +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_CRAFT_H_ -#define LUA_CRAFT_H_ - -#include <vector> - -extern "C" { -#include <lua.h> -} - -#include "craftdef.h" - -/*****************************************************************************/ -/* Mod API */ -/*****************************************************************************/ -int l_register_craft(lua_State *L); -int l_get_craft_recipe(lua_State *L); -int l_get_all_craft_recipes(lua_State *L); -int l_get_craft_result(lua_State *L); - -/*****************************************************************************/ -/* scriptapi internal */ -/*****************************************************************************/ -bool read_craft_replacements(lua_State *L, int index, - CraftReplacements &replacements); -bool read_craft_recipe_shapeless(lua_State *L, int index, - std::vector<std::string> &recipe); -bool read_craft_recipe_shaped(lua_State *L, int index, - int &width, std::vector<std::string> &recipe); - -extern struct EnumString es_CraftMethod[]; - -#endif /* LUA_CRAFT_H_ */ |