diff options
Diffstat (limited to 'source/cFurnaceWindow.h')
-rw-r--r-- | source/cFurnaceWindow.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/source/cFurnaceWindow.h b/source/cFurnaceWindow.h new file mode 100644 index 000000000..8dd7d3223 --- /dev/null +++ b/source/cFurnaceWindow.h @@ -0,0 +1,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;
+};
\ No newline at end of file |