summaryrefslogtreecommitdiffstats
path: root/source/cFurnaceWindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/cFurnaceWindow.h')
-rw-r--r--source/cFurnaceWindow.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/source/cFurnaceWindow.h b/source/cFurnaceWindow.h
deleted file mode 100644
index ccaa5a97c..000000000
--- a/source/cFurnaceWindow.h
+++ /dev/null
@@ -1,37 +0,0 @@
-
-#pragma once
-
-#include "cWindow.h"
-
-
-
-
-
-class cFurnaceEntity;
-class cWindowOwner;
-
-
-
-
-
-class cFurnaceWindow :
- public cWindow
-{
-public:
- cFurnaceWindow( cFurnaceEntity* a_Owner );
-
- virtual void Clicked(
- cPlayer & a_Player,
- int a_WindowID, short a_SlotNum, bool a_IsRightClick, bool a_IsShiftPressed,
- const cItem & a_HeldItem
- ) override;
-
- virtual void Close( cPlayer & a_Player ) override;
-
-private:
- cFurnaceEntity * m_Furnace;
-};
-
-
-
-