forked from teamnwah/openmw-tes3coop
ad388c7e12
Also reorder packets and packet processors.
15 lines
372 B
C++
15 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);
|
|
}
|