summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_Flying.cpp
blob: b8cab1de148d69f9fd79f1945b9424a0eec83e5f (plain) (blame)
1
2
3
4
5
6
7
8
#include "cPacket_Flying.h"

bool cPacket_Flying::Parse(cSocket & a_Socket)
{
	m_Socket = a_Socket;
	if( !ReadBool( m_bFlying ) ) return false;
	return true;
}