diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-05-26 16:39:04 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-05-26 16:39:04 +0200 |
commit | 5c3235ecdc3f718ce20e006f1ecfa2159df82c87 (patch) | |
tree | aea2e4a722715498c59b0a828486b30b74506bb5 /source/UI/Window.h | |
parent | ItemGrid: Added the RemoveOneItem() function (diff) | |
download | cuberite-5c3235ecdc3f718ce20e006f1ecfa2159df82c87.tar cuberite-5c3235ecdc3f718ce20e006f1ecfa2159df82c87.tar.gz cuberite-5c3235ecdc3f718ce20e006f1ecfa2159df82c87.tar.bz2 cuberite-5c3235ecdc3f718ce20e006f1ecfa2159df82c87.tar.lz cuberite-5c3235ecdc3f718ce20e006f1ecfa2159df82c87.tar.xz cuberite-5c3235ecdc3f718ce20e006f1ecfa2159df82c87.tar.zst cuberite-5c3235ecdc3f718ce20e006f1ecfa2159df82c87.zip |
Diffstat (limited to 'source/UI/Window.h')
-rw-r--r-- | source/UI/Window.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/source/UI/Window.h b/source/UI/Window.h index 7bd87a2ce..86ea1849b 100644 --- a/source/UI/Window.h +++ b/source/UI/Window.h @@ -19,7 +19,7 @@ class cPlayer; class cWindowOwner; class cClientHandle; class cChestEntity; -class cDispenserEntity; +class cDropSpenserEntity; class cFurnaceEntity; class cSlotArea; class cWorld; @@ -49,9 +49,13 @@ public: Chest = 0, Workbench = 1, Furnace = 2, - Dispenser = 3, + DropSpenser = 3, // Dropper or Dispenser Enchantment = 4, - Brewery = 5 + Brewery = 5, + NPCTrade = 6, + Beacon = 7, + Anvil = 8, + Hopper = 9, }; static const int c_NumInventorySlots = 36; @@ -149,11 +153,11 @@ public: -class cDispenserWindow : +class cDropSpenserWindow : public cWindow { public: - cDispenserWindow(int a_BlockX, int a_BlockY, int a_BlockZ, cDispenserEntity * a_Dispenser); + cDropSpenserWindow(int a_BlockX, int a_BlockY, int a_BlockZ, cDropSpenserEntity * a_Dispenser); } ; |