diff options
author | Mattes D <github@xoft.cz> | 2015-03-21 15:40:56 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-03-21 15:40:56 +0100 |
commit | 3923e3e37a60f7d51b9d527840cd1b93cde04578 (patch) | |
tree | 954b1cf7b6bc2876fbd63b38d7ed81eb14881d6c /src/Protocol/Protocol17x.h | |
parent | Changed cEntity::m_UniqueID to UInt32. (diff) | |
download | cuberite-3923e3e37a60f7d51b9d527840cd1b93cde04578.tar cuberite-3923e3e37a60f7d51b9d527840cd1b93cde04578.tar.gz cuberite-3923e3e37a60f7d51b9d527840cd1b93cde04578.tar.bz2 cuberite-3923e3e37a60f7d51b9d527840cd1b93cde04578.tar.lz cuberite-3923e3e37a60f7d51b9d527840cd1b93cde04578.tar.xz cuberite-3923e3e37a60f7d51b9d527840cd1b93cde04578.tar.zst cuberite-3923e3e37a60f7d51b9d527840cd1b93cde04578.zip |
Diffstat (limited to 'src/Protocol/Protocol17x.h')
-rw-r--r-- | src/Protocol/Protocol17x.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Protocol/Protocol17x.h b/src/Protocol/Protocol17x.h index 2ee247330..8ff4bd158 100644 --- a/src/Protocol/Protocol17x.h +++ b/src/Protocol/Protocol17x.h @@ -179,6 +179,11 @@ protected: m_Out.WriteBEInt32(a_Value); } + void WriteUInt32(UInt32 a_Value) + { + m_Out.WriteBEUInt32(a_Value); + } + void WriteInt64(Int64 a_Value) { m_Out.WriteBEInt64(a_Value); |