mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 22:19:54 +00:00
18 lines
411 B
C++
18 lines
411 B
C++
|
#ifndef OPENMW_PACKETWORLDKILLCOUNT_HPP
|
||
|
#define OPENMW_PACKETWORLDKILLCOUNT_HPP
|
||
|
|
||
|
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
|
||
|
|
||
|
namespace mwmp
|
||
|
{
|
||
|
class PacketWorldKillCount : public PlayerPacket
|
||
|
{
|
||
|
public:
|
||
|
PacketWorldKillCount(RakNet::RakPeerInterface *peer);
|
||
|
|
||
|
virtual void Packet(RakNet::BitStream *bs, bool send);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif //OPENMW_PACKETWORLDKILLCOUNT_HPP
|