the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3#include "WeighedRandom.h"
4
5class EnchantmentInstance : public WeighedRandomItem
6{
7public:
8 const Enchantment *enchantment;
9 const int level;
10
11 EnchantmentInstance(Enchantment *enchantment, int level);
12 EnchantmentInstance(int id, int level);
13
14 // 4J Added
15 EnchantmentInstance *copy();
16};