mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-11-23 14:29:52 +00:00
9 lines
193 B
C++
9 lines
193 B
C++
// TODO: Implement NetworkTypes.cpp
|
|
|
|
#include "NetworkTypes.h"
|
|
|
|
bool PlayerID::operator==( const PlayerID& right ) const
|
|
{
|
|
return binaryAddress == right.binaryAddress && port == right.port;
|
|
}
|