mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 07:49:56 +00:00
15 lines
393 B
C++
15 lines
393 B
C++
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
||
|
#include "PacketPlayerKillCount.hpp"
|
||
|
|
||
|
mwmp::PacketPlayerKillCount::PacketPlayerKillCount(RakNet::RakPeerInterface *peer) : PlayerPacket(peer)
|
||
|
{
|
||
|
packetID = ID_PLAYER_KILL_COUNT;
|
||
|
}
|
||
|
|
||
|
void mwmp::PacketPlayerKillCount::Packet(RakNet::BitStream *bs, bool send)
|
||
|
{
|
||
|
PlayerPacket::Packet(bs, send);
|
||
|
|
||
|
// Placeholder to be filled in later
|
||
|
}
|