summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_Flying.cpp
blob: 44f30bbe39a935e8cbec3d287ea5714a69150d64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

#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;
}