1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-21 11:53:51 +00:00
openmw-tes3mp/components/openmw-mp/Packets/Actor/PacketActorDeath.hpp
Koncord 2cb0ea20f0 [General] Modernize packets
Use explicit for constructors
Use override instead virtual for inherited methods
Mark final derived classes as "final"
2017-12-09 10:13:27 +08:00

17 lines
397 B
C++

#ifndef OPENMW_PACKETACTORDEATH_HPP
#define OPENMW_PACKETACTORDEATH_HPP
#include <components/openmw-mp/Packets/Actor/ActorPacket.hpp>
namespace mwmp
{
class PacketActorDeath final: public ActorPacket
{
public:
explicit PacketActorDeath(RakNet::RakPeerInterface *peer);
void Actor(BaseActor &actor, bool send) override;
};
}
#endif //OPENMW_PACKETACTORDEATH_HPP