aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/EnchantmentContainer.h
blob: 48d8687fba5123df3b57e3e50cd11fe76c2e5231 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once
// 4J Stu Added
// In EnchantmentMenu.java they create an anoymous class while creating the container. I have moved the content
// of that anonymous class to here

#include "SimpleContainer.h"

class EnchantmentMenu;

class EnchantmentContainer : public SimpleContainer
{
private:
	EnchantmentMenu *m_menu;
public:
	EnchantmentContainer(EnchantmentMenu *menu);
	virtual int getMaxStackSize();
	virtual void setChanged();
};