blob: 7c433b4c00caa6dea174e8aaac33d1a4837d1da1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//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 wstring shapes[][4];
vector <Object *> *map;
public:
void addRecipes(Recipes *r);
};
|