diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-03-05 22:31:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-03-05 22:31:07 +0300 |
commit | 135fa01ee301fd878c93444999a625f64ccf76c1 (patch) | |
tree | 61c3bc0c3778268b64e1471aea4a2d0ead3962ad /src/net/tmwa/messageout.h | |
parent | ca8cf76ea713b75db3b573f30c023f7637e9cdf3 (diff) | |
download | plus-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/tmwa/messageout.h')
-rw-r--r-- | src/net/tmwa/messageout.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/net/tmwa/messageout.h b/src/net/tmwa/messageout.h index 35e462693..3c0aaa92c 100644 --- a/src/net/tmwa/messageout.h +++ b/src/net/tmwa/messageout.h @@ -49,28 +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 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; |