first commit
This commit is contained in:
24
Minecraft.World/ToolRecipies.h
Normal file
24
Minecraft.World/ToolRecipies.h
Normal file
@@ -0,0 +1,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);
|
||||
};
|
||||
Reference in New Issue
Block a user