diff options
Diffstat (limited to '')
-rw-r--r-- | source/cCraftingWindow.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/source/cCraftingWindow.h b/source/cCraftingWindow.h new file mode 100644 index 000000000..df32bf74a --- /dev/null +++ b/source/cCraftingWindow.h @@ -0,0 +1,13 @@ +#pragma once
+
+#include "cWindow.h"
+
+class cWindowOwner;
+class cCraftingWindow : public cWindow
+{
+public:
+ cCraftingWindow( cWindowOwner* a_Owner, bool a_bInventoryVisible );
+
+ virtual void Clicked( cPacket_WindowClick* a_ClickPacket, cPlayer & a_Player );
+ virtual void Close( cPlayer & a_Player );
+};
\ No newline at end of file |