aboutsummaryrefslogtreecommitdiff
path: root/assets/blender/mbb/modern_japanlocomotive_windows_join.blend
diff options
context:
space:
mode:
Diffstat (limited to 'assets/blender/mbb/modern_japanlocomotive_windows_join.blend')
0 files changed, 0 insertions, 0 deletions
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. */ #pragma once #include <string> #include <vector> #include "lua_api/l_base.h" struct CraftReplacements; class ModApiCraft : public ModApiBase { private: static int l_register_craft(lua_State *L); static int l_get_craft_recipe(lua_State *L); static int l_get_all_craft_recipes(lua_State *L); static int l_get_craft_result(lua_State *L); static int l_clear_craft(lua_State *L); static bool readCraftReplacements(lua_State *L, int index, CraftReplacements &replacements); static bool readCraftRecipeShapeless(lua_State *L, int index, std::vector<std::string> &recipe); static bool readCraftRecipeShaped(lua_State *L, int index, int &width, std::vector<std::string> &recipe); static struct EnumString es_CraftMethod[]; public: static void Initialize(lua_State *L, int top); };