forked from teamnwah/openmw-tes3coop
16 lines
372 B
C++
16 lines
372 B
C++
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
||
|
#include "PacketPlayerFaction.hpp"
|
||
|
|
||
|
using namespace std;
|
||
|
using namespace mwmp;
|
||
|
|
||
|
PacketPlayerFaction::PacketPlayerFaction(RakNet::RakPeerInterface *peer) : PlayerPacket(peer)
|
||
|
{
|
||
|
packetID = ID_PLAYER_FACTION;
|
||
|
}
|
||
|
|
||
|
void PacketPlayerFaction::Packet(RakNet::BitStream *bs, bool send)
|
||
|
{
|
||
|
PlayerPacket::Packet(bs, send);
|
||
|
}
|