diff options
Diffstat (limited to 'src/net/messageout.hpp')
-rw-r--r-- | src/net/messageout.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/messageout.hpp b/src/net/messageout.hpp index 270b7963..cf3e0c73 100644 --- a/src/net/messageout.hpp +++ b/src/net/messageout.hpp @@ -49,11 +49,11 @@ class MessageOut */ void clear(); - void writeByte(int value); /**< Writes an integer on one byte. */ + void writeInt8(int value); /**< Writes an integer on one byte. */ - void writeShort(int value); /**< Writes an integer on two bytes. */ + void writeInt16(int value); /**< Writes an integer on two bytes. */ - void writeLong(int value); /**< Writes an integer on four bytes. */ + void writeInt32(int value); /**< Writes an integer on four bytes. */ /** * Writes a double. HACKY and should *not* be used for client |