diff options
author | daniel0916 <theschokolps@gmail.com> | 2014-01-20 18:22:08 +0100 |
---|---|---|
committer | daniel0916 <theschokolps@gmail.com> | 2014-01-20 18:22:08 +0100 |
commit | 0c2b307eab67b7f37d82a7862a6acbcd96b45adb (patch) | |
tree | 42c46a87004237c02151454c978abaf6c36b9075 /src/UI/Window.cpp | |
parent | APIDump: Added notes about objects across cWorld's task execution. (diff) | |
download | cuberite-0c2b307eab67b7f37d82a7862a6acbcd96b45adb.tar cuberite-0c2b307eab67b7f37d82a7862a6acbcd96b45adb.tar.gz cuberite-0c2b307eab67b7f37d82a7862a6acbcd96b45adb.tar.bz2 cuberite-0c2b307eab67b7f37d82a7862a6acbcd96b45adb.tar.lz cuberite-0c2b307eab67b7f37d82a7862a6acbcd96b45adb.tar.xz cuberite-0c2b307eab67b7f37d82a7862a6acbcd96b45adb.tar.zst cuberite-0c2b307eab67b7f37d82a7862a6acbcd96b45adb.zip |
Diffstat (limited to 'src/UI/Window.cpp')
-rw-r--r-- | src/UI/Window.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/UI/Window.cpp b/src/UI/Window.cpp index 3ffeff7a0..fcfe6faf3 100644 --- a/src/UI/Window.cpp +++ b/src/UI/Window.cpp @@ -782,6 +782,21 @@ cCraftingWindow::cCraftingWindow(int a_BlockX, int a_BlockY, int a_BlockZ) : /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// cEnchantingWindow: + +cEnchantingWindow::cEnchantingWindow(int a_BlockX, int a_BlockY, int a_BlockZ) : +cWindow(wtEnchantment, "Enchantment Table") +{ + m_SlotAreas.push_back(new cSlotAreaEnchanting(1, *this)); + m_SlotAreas.push_back(new cSlotAreaInventory(*this)); + m_SlotAreas.push_back(new cSlotAreaHotBar(*this)); +} + + + + + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // cChestWindow: cChestWindow::cChestWindow(cChestEntity * a_Chest) : |