openmw-tes3coop/components/openmw-mp/Packets/Actor/PacketActorDeath.cpp

16 lines
378 B
C++
Raw Normal View History

#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;
}
2017-06-02 19:42:10 +00:00
void PacketActorDeath::Actor(BaseActor &actor, bool send)
{
// Placeholder to be filled in later
}