1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 17:19:56 +00:00
openmw-tes3mp/components/openmw-mp/Packets/Actor/PacketActorDeath.hpp

18 lines
382 B
C++
Raw Normal View History

#ifndef OPENMW_PACKETACTORDEATH_HPP
#define OPENMW_PACKETACTORDEATH_HPP
#include <components/openmw-mp/Packets/Actor/ActorPacket.hpp>
namespace mwmp
{
class PacketActorDeath : public ActorPacket
{
public:
PacketActorDeath(RakNet::RakPeerInterface *peer);
2017-06-02 19:42:10 +00:00
virtual void Actor(BaseActor &actor, bool send);
};
}
#endif //OPENMW_PACKETACTORDEATH_HPP