diff options
author | Mattes D <github@xoft.cz> | 2014-09-30 17:16:15 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-09-30 17:16:15 +0200 |
commit | 1531511bbe6affcb26e6ade17e4a313f5209e8e7 (patch) | |
tree | e9aa42ac32fcb72bf306e679be80cf0082694fc8 /src/UI/Window.h | |
parent | Merge pull request #1484 from SphinxC0re/master (diff) | |
parent | Compilation fix (diff) | |
download | cuberite-1531511bbe6affcb26e6ade17e4a313f5209e8e7.tar cuberite-1531511bbe6affcb26e6ade17e4a313f5209e8e7.tar.gz cuberite-1531511bbe6affcb26e6ade17e4a313f5209e8e7.tar.bz2 cuberite-1531511bbe6affcb26e6ade17e4a313f5209e8e7.tar.lz cuberite-1531511bbe6affcb26e6ade17e4a313f5209e8e7.tar.xz cuberite-1531511bbe6affcb26e6ade17e4a313f5209e8e7.tar.zst cuberite-1531511bbe6affcb26e6ade17e4a313f5209e8e7.zip |
Diffstat (limited to 'src/UI/Window.h')
-rw-r--r-- | src/UI/Window.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/UI/Window.h b/src/UI/Window.h index bc5becf11..6b6dce346 100644 --- a/src/UI/Window.h +++ b/src/UI/Window.h @@ -23,6 +23,7 @@ class cDropSpenserEntity; class cEnderChestEntity; class cFurnaceEntity; class cHopperEntity; +class cMinecartWithChest; class cBeaconEntity; class cSlotArea; class cSlotAreaAnvil; @@ -361,6 +362,20 @@ protected: +class cMinecartWithChestWindow : + public cWindow +{ +public: + cMinecartWithChestWindow(cMinecartWithChest * a_ChestCart); + ~cMinecartWithChestWindow(); +private: + cMinecartWithChest * m_ChestCart; +}; + + + + + class cEnderChestWindow : public cWindow { |