summaryrefslogtreecommitdiff
path: root/src/net/messageout.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/messageout.h')
-rw-r--r--src/net/messageout.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/net/messageout.h b/src/net/messageout.h
index 13a4eae1b..048afc70c 100644
--- a/src/net/messageout.h
+++ b/src/net/messageout.h
@@ -23,6 +23,8 @@
#ifndef NET_MESSAGEOUT_H
#define NET_MESSAGEOUT_H
+#include "enums/simpletypes/beingid.h"
+
#include <string>
#include "localconsts.h"
@@ -47,13 +49,16 @@ class MessageOut notfinal
const char *const str);
/**< Writes a short. */
- virtual void writeInt16(int16_t value,
+ virtual void writeInt16(const int16_t value,
const char *const str) = 0;
/**< Writes a long. */
- virtual void writeInt32(int32_t value,
+ virtual void writeInt32(const int32_t value,
const char *const str) = 0;
+ virtual void writeBeingId(const BeingId value,
+ const char *const str) = 0;
+
/**
* Writes a string. If a fixed length is not given (-1), it is stored
* as a short at the start of the string.