mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 04:49:54 +00:00
31 lines
684 B
C++
31 lines
684 B
C++
|
//
|
||
|
// Created by koncord on 13.01.16.
|
||
|
//
|
||
|
|
||
|
#ifndef OPENMW_PACKETRESURRECT_HPP
|
||
|
#define OPENMW_PACKETRESURRECT_HPP
|
||
|
|
||
|
|
||
|
#include <components/openmw-mp/Packets/BasePacket.hpp>
|
||
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
||
|
|
||
|
namespace mwmp
|
||
|
{
|
||
|
class PacketResurrect: public BasePacket
|
||
|
{
|
||
|
public:
|
||
|
PacketResurrect(RakNet::RakPeerInterface *peer) : BasePacket(peer)
|
||
|
{
|
||
|
packetID = ID_GAME_RESURRECT;
|
||
|
}
|
||
|
void Packet(RakNet::BitStream *bs, BasePlayer *player, bool send)
|
||
|
{
|
||
|
BasePacket::Packet(bs, player, send);
|
||
|
RW(player->CreatureStats()->mDead, send);
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif //OPENMW_PACKETRESURRECT_HPP
|