diff options
author | madmaxoft <github@xoft.cz> | 2013-10-28 13:30:24 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-10-28 13:30:24 +0100 |
commit | df20c19986805380cfd728d63f2e3003331b1665 (patch) | |
tree | 6f2d00c4b23f46af9a6d39550186815a95905dcb /source/UI/Window.h | |
parent | APIDump: Documented HTTPFormData and HTTPRequest. (diff) | |
download | cuberite-df20c19986805380cfd728d63f2e3003331b1665.tar cuberite-df20c19986805380cfd728d63f2e3003331b1665.tar.gz cuberite-df20c19986805380cfd728d63f2e3003331b1665.tar.bz2 cuberite-df20c19986805380cfd728d63f2e3003331b1665.tar.lz cuberite-df20c19986805380cfd728d63f2e3003331b1665.tar.xz cuberite-df20c19986805380cfd728d63f2e3003331b1665.tar.zst cuberite-df20c19986805380cfd728d63f2e3003331b1665.zip |
Diffstat (limited to 'source/UI/Window.h')
-rw-r--r-- | source/UI/Window.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/source/UI/Window.h b/source/UI/Window.h index aa7e9d0d0..2d5e81e9e 100644 --- a/source/UI/Window.h +++ b/source/UI/Window.h @@ -49,17 +49,17 @@ class cWindow public: enum WindowType { - Inventory = -1, // This value is never actually sent to a client - Chest = 0, - Workbench = 1, - Furnace = 2, - DropSpenser = 3, // Dropper or Dispenser - Enchantment = 4, - Brewery = 5, - NPCTrade = 6, - Beacon = 7, - Anvil = 8, - Hopper = 9, + wtInventory = -1, // This value is never actually sent to a client + wtChest = 0, + wtWorkbench = 1, + wtFurnace = 2, + wtDropSpenser = 3, // Dropper or Dispenser + wtEnchantment = 4, + wtBrewery = 5, + wtNPCTrade = 6, + wtBeacon = 7, + wtAnvil = 8, + wtHopper = 9, }; // tolua_end |