2018-07-15 02:34:59 +00:00
|
|
|
#ifndef OPENMW_PACKETWORLDKILLCOUNT_HPP
|
|
|
|
#define OPENMW_PACKETWORLDKILLCOUNT_HPP
|
|
|
|
|
2019-10-08 08:09:08 +00:00
|
|
|
#include <components/openmw-mp/Packets/Worldstate/WorldstatePacket.hpp>
|
|
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
2018-07-15 02:34:59 +00:00
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2019-10-08 08:09:08 +00:00
|
|
|
class PacketWorldKillCount: public WorldstatePacket
|
2018-07-15 02:34:59 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
PacketWorldKillCount(RakNet::RakPeerInterface *peer);
|
|
|
|
|
2019-12-04 08:17:33 +00:00
|
|
|
virtual void Packet(RakNet::BitStream *newBitstream, bool send);
|
2018-07-15 02:34:59 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PACKETWORLDKILLCOUNT_HPP
|