//
// Created by koncord on 13.01.16.
//

#ifndef OPENMW_PACKETPLAYERDEATH_HPP
#define OPENMW_PACKETPLAYERDEATH_HPP


#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
#include <components/openmw-mp/NetworkMessages.hpp>

namespace mwmp
{
    class PacketPlayerDeath final: public PlayerPacket
    {
    public:
        PacketPlayerDeath(RakNet::RakPeerInterface *peer) : PlayerPacket(peer)
        {
            packetID = ID_PLAYER_DEATH;
        }
        void Packet(RakNet::BitStream *bs, bool send)
        {
            PlayerPacket::Packet(bs, send);

            RW(player->deathReason, send, true);
        }
    };
}

#endif //OPENMW_PACKETPLAYERDEATH_HPP