diff options
Diffstat (limited to 'source/packets/cPacket_Flying.cpp')
-rw-r--r-- | source/packets/cPacket_Flying.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source/packets/cPacket_Flying.cpp b/source/packets/cPacket_Flying.cpp new file mode 100644 index 000000000..b8cab1de1 --- /dev/null +++ b/source/packets/cPacket_Flying.cpp @@ -0,0 +1,8 @@ +#include "cPacket_Flying.h"
+
+bool cPacket_Flying::Parse(cSocket & a_Socket)
+{
+ m_Socket = a_Socket;
+ if( !ReadBool( m_bFlying ) ) return false;
+ return true;
+}
\ No newline at end of file |