Files
cuberite-2a/source/packets/cPacket_Flying.cpp
T

8 lines
166 B
C++
Raw Normal View History

2011-10-03 18:41:19 +00:00
#include "cPacket_Flying.h"
bool cPacket_Flying::Parse(cSocket & a_Socket)
{
m_Socket = a_Socket;
if( !ReadBool( m_bFlying ) ) return false;
return true;
}