mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-29 02:03:38 +00:00
24 lines
431 B
C++
24 lines
431 B
C++
// package net.minecraft.world.item.crafting;
|
|
|
|
// import net.minecraft.world.item.*;
|
|
// import net.minecraft.world.level.tile.Tile;
|
|
#pragma once
|
|
|
|
#define MAX_TOOL_RECIPES 5
|
|
|
|
class Recipes;
|
|
|
|
class ToolRecipies {
|
|
public:
|
|
// 4J - added for common ctor code
|
|
void _init();
|
|
ToolRecipies() { _init(); }
|
|
|
|
private:
|
|
static std::wstring shapes[][4];
|
|
std::vector<Object*>* map;
|
|
|
|
public:
|
|
void addRecipes(Recipes* r);
|
|
};
|