2017-02-27 23:38:25 +00:00
|
|
|
#ifndef OPENMW_PACKETPLAYERDEATH_HPP
|
|
|
|
#define OPENMW_PACKETPLAYERDEATH_HPP
|
2016-01-12 03:41:44 +00:00
|
|
|
|
2016-10-19 16:37:10 +00:00
|
|
|
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
|
2016-01-12 03:41:44 +00:00
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2017-02-27 23:38:25 +00:00
|
|
|
class PacketPlayerDeath: public PlayerPacket
|
2016-01-12 03:41:44 +00:00
|
|
|
{
|
|
|
|
public:
|
2018-07-05 19:24:51 +00:00
|
|
|
PacketPlayerDeath(RakNet::RakPeerInterface *peer);
|
2017-05-05 19:16:31 +00:00
|
|
|
|
2018-07-05 19:24:51 +00:00
|
|
|
virtual void Packet(RakNet::BitStream *bs, bool send);
|
2016-01-12 03:41:44 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-02-27 23:38:25 +00:00
|
|
|
#endif //OPENMW_PACKETPLAYERDEATH_HPP
|