summaryrefslogtreecommitdiffstats
path: root/src/UI/EnchantingWindow.h
blob: 61a40036fa03f20d5e177daa1b1368e68d82b943 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45

// EnchantingWindow.h

// Representing the UI window for the enchanting block





#pragma once

#include "Window.h"





class cEnchantingWindow:
	public cWindow
{
	using Super = cWindow;

public:

	cEnchantingWindow(int a_BlockX, int a_BlockY, int a_BlockZ);

	virtual void SetProperty(short a_Property, short a_Value, cPlayer & a_Player) override;

	virtual void SetProperty(short a_Property, short a_Value) override;

	/** Return the value of a property */
	short GetPropertyValue(short a_Property);

	virtual void DistributeStack(cItem & a_ItemStack, int a_Slot, cPlayer & a_Player, cSlotArea * a_ClickedArea, bool a_ShouldApply) override;

	cSlotArea * m_SlotArea;

protected:
	short m_PropertyValue[3];
	int m_BlockX, m_BlockY, m_BlockZ;
};