aboutsummaryrefslogtreecommitdiff
path: root/assets/blender/gleis/before_redo/rail_together2.png
diff options
context:
space:
mode:
Diffstat (limited to 'assets/blender/gleis/before_redo/rail_together2.png')
0 files changed, 0 insertions, 0 deletions
eceived 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 L_CRAFT_H_ #define L_CRAFT_H_ #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);