diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-03-27 19:44:23 +0100 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-03-27 20:18:11 +0100 |
commit | 712ca58c011123505c807266dcc8d9d84ca1aa44 (patch) | |
tree | 27c0dfe49f21bffe25007f70475be3223d3fa851 /src/net/messageout.h | |
parent | ff5e1957dd4fde40e41e4c5e4b9e04e1f36e5ef2 (diff) | |
download | mana-client-712ca58c011123505c807266dcc8d9d84ca1aa44.tar.gz mana-client-712ca58c011123505c807266dcc8d9d84ca1aa44.tar.bz2 mana-client-712ca58c011123505c807266dcc8d9d84ca1aa44.tar.xz mana-client-712ca58c011123505c807266dcc8d9d84ca1aa44.zip |
Made eAthena's Network class statically accessible
Now the instance doesn't need to be passed into the MessageOut class
anymore. Expect a lot of cleanup in the next commit.
Diffstat (limited to 'src/net/messageout.h')
-rw-r--r-- | src/net/messageout.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/net/messageout.h b/src/net/messageout.h index 1ddd040d..9dc31525 100644 --- a/src/net/messageout.h +++ b/src/net/messageout.h @@ -43,15 +43,13 @@ class MessageOut /** * Constructor. */ -#ifdef TMWSERV_SUPPORT MessageOut(short id); +#ifdef TMWSERV_SUPPORT /** * Destructor. */ ~MessageOut(); -#else - MessageOut(Network *network); #endif void writeInt8(Sint8 value); /**< Writes a byte. */ |