summaryrefslogtreecommitdiffstats
path: root/source/cCraftingWindow.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-09-20 15:25:54 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-09-20 15:25:54 +0200
commitbc466f07a454271d4845a7e8c7f0822541c5afbd (patch)
treec8455a2af322bbd847b6b4ea74256b78aa834c4c /source/cCraftingWindow.h
parentProtoProxy: moar packets! (can now sustain parsing while connected to vanilla server, most of the times) (diff)
downloadcuberite-bc466f07a454271d4845a7e8c7f0822541c5afbd.tar
cuberite-bc466f07a454271d4845a7e8c7f0822541c5afbd.tar.gz
cuberite-bc466f07a454271d4845a7e8c7f0822541c5afbd.tar.bz2
cuberite-bc466f07a454271d4845a7e8c7f0822541c5afbd.tar.lz
cuberite-bc466f07a454271d4845a7e8c7f0822541c5afbd.tar.xz
cuberite-bc466f07a454271d4845a7e8c7f0822541c5afbd.tar.zst
cuberite-bc466f07a454271d4845a7e8c7f0822541c5afbd.zip
Diffstat (limited to 'source/cCraftingWindow.h')
-rw-r--r--source/cCraftingWindow.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/source/cCraftingWindow.h b/source/cCraftingWindow.h
deleted file mode 100644
index 638b1aa53..000000000
--- a/source/cCraftingWindow.h
+++ /dev/null
@@ -1,43 +0,0 @@
-
-#pragma once
-
-#include "cWindow.h"
-
-
-
-
-// fwd:
-class cWindowOwner;
-
-
-
-
-
-class cCraftingWindow : public cWindow
-{
-public:
- enum
- {
- SLOT_CRAFTING_RESULT = 0,
- SLOT_CRAFTING_MIN = 1,
- SLOT_CRAFTING_MAX = 9,
- } ;
-
- cCraftingWindow(cWindowOwner * a_Owner, bool a_bInventoryVisible);
-
- 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;
-
- void ShiftClicked(cPlayer & a_Player, short a_SlotNum);
- void ShiftClickedCraftingResult(cPlayer & a_Player, short a_SlotNum);
- void ShiftClickedCraftingGrid (cPlayer & a_Player, short a_SlotNum);
-};
-
-
-
-