mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 17:19:56 +00:00
15 lines
378 B
C++
15 lines
378 B
C++
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
#include <components/openmw-mp/Log.hpp>
|
|
#include "PacketActorDeath.hpp"
|
|
|
|
using namespace mwmp;
|
|
|
|
PacketActorDeath::PacketActorDeath(RakNet::RakPeerInterface *peer) : ActorPacket(peer)
|
|
{
|
|
packetID = ID_ACTOR_DEATH;
|
|
}
|
|
|
|
void PacketActorDeath::Actor(BaseActor &actor, bool send)
|
|
{
|
|
// Placeholder to be filled in later
|
|
}
|