diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-09-11 23:17:27 +0200 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-09-11 23:17:27 +0200 |
commit | c7044fa1dd77a04c57780443a5dc88165c2d2ca1 (patch) | |
tree | cece37f27c6b32f4c5669a3467d8f0af17f75ac4 /src/UI/Window.h | |
parent | Removed GetProtocolVersion() from the protocols. (diff) | |
download | cuberite-c7044fa1dd77a04c57780443a5dc88165c2d2ca1.tar cuberite-c7044fa1dd77a04c57780443a5dc88165c2d2ca1.tar.gz cuberite-c7044fa1dd77a04c57780443a5dc88165c2d2ca1.tar.bz2 cuberite-c7044fa1dd77a04c57780443a5dc88165c2d2ca1.tar.lz cuberite-c7044fa1dd77a04c57780443a5dc88165c2d2ca1.tar.xz cuberite-c7044fa1dd77a04c57780443a5dc88165c2d2ca1.tar.zst cuberite-c7044fa1dd77a04c57780443a5dc88165c2d2ca1.zip |
Diffstat (limited to '')
-rw-r--r-- | src/UI/Window.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/UI/Window.h b/src/UI/Window.h index 3d860407f..bc5becf11 100644 --- a/src/UI/Window.h +++ b/src/UI/Window.h @@ -63,7 +63,7 @@ public: wtBeacon = 7, wtAnvil = 8, wtHopper = 9, - // Unknown: 10 + wtDropper = 10, wtAnimalChest = 11, }; @@ -76,6 +76,7 @@ public: char GetWindowID(void) const { return m_WindowID; } // tolua_export int GetWindowType(void) const { return m_WindowType; } // tolua_export + const AString GetWindowTypeName(void) const; // tolua_export cWindowOwner * GetOwner(void) { return m_Owner; } void SetOwner( cWindowOwner * a_Owner) { m_Owner = a_Owner; } |