summaryrefslogtreecommitdiff
path: root/src/net/eathena/messageout.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-03-05 22:31:07 +0300
committerAndrei Karas <akaras@inbox.ru>2018-03-05 22:31:07 +0300
commit135fa01ee301fd878c93444999a625f64ccf76c1 (patch)
tree61c3bc0c3778268b64e1471aea4a2d0ead3962ad /src/net/eathena/messageout.h
parentca8cf76ea713b75db3b573f30c023f7637e9cdf3 (diff)
downloadplus-135fa01ee301fd878c93444999a625f64ccf76c1.tar.gz
plus-135fa01ee301fd878c93444999a625f64ccf76c1.tar.bz2
plus-135fa01ee301fd878c93444999a625f64ccf76c1.tar.xz
plus-135fa01ee301fd878c93444999a625f64ccf76c1.zip
Moved same methods from messageout into one file.
Diffstat (limited to 'src/net/eathena/messageout.h')
-rw-r--r--src/net/eathena/messageout.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/net/eathena/messageout.h b/src/net/eathena/messageout.h
index 2f2718e23..b86c10d4f 100644
--- a/src/net/eathena/messageout.h
+++ b/src/net/eathena/messageout.h
@@ -49,31 +49,6 @@ class MessageOut final : public Net::MessageOut
~MessageOut() override final;
- /**< Writes a short. */
- void writeInt16(const int16_t value,
- const char *const str) override final;
-
- /**< Writes a long. */
- void writeInt32(const int32_t value,
- const char *const str) override final;
-
- void writeInt64(const int64_t value,
- const char *const str);
-
- void writeBeingId(const BeingId value,
- const char *const str) override final;
-
- /**
- * Encodes coordinates and direction in 3 bytes.
- */
- void writeCoordinates(const uint16_t x,
- const uint16_t y,
- unsigned char direction,
- const char *const str);
-
- void resetPos()
- { mPos = 0; }
-
private:
void expand(const size_t size) const override final;