1
0
cuberite-2a/source/packets/cPacket_Flying.cpp

15 lines
274 B
C++

#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
#include "cPacket_Flying.h"
bool cPacket_Flying::Parse(cSocket & a_Socket)
{
m_Socket = a_Socket;
if( !ReadBool( m_bFlying ) ) return false;
return true;
}