summaryrefslogtreecommitdiffstats
path: root/source/cFurnaceWindow.h
blob: 8dd7d3223fc463ea326da303c81ef17fbe258e70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "cWindow.h"

class cFurnaceEntity;
class cWindowOwner;
class cFurnaceWindow : public cWindow
{
public:
	cFurnaceWindow( cFurnaceEntity* a_Owner );

	virtual void Clicked( cPacket_WindowClick* a_ClickPacket, cPlayer & a_Player );
	virtual void Close( cPlayer & a_Player );
private:
	cFurnaceEntity* m_Furnace;
};