2017-05-29 01:43:52 +00:00
|
|
|
#ifndef OPENMW_PACKETPLAYERREGIONCHANGE_HPP
|
|
|
|
#define OPENMW_PACKETPLAYERREGIONCHANGE_HPP
|
|
|
|
|
|
|
|
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
|
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2017-06-10 09:01:37 +00:00
|
|
|
class PacketPlayerKillCount : public PlayerPacket
|
2017-05-29 01:43:52 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-06-10 09:01:37 +00:00
|
|
|
PacketPlayerKillCount(RakNet::RakPeerInterface *peer);
|
2017-05-29 01:43:52 +00:00
|
|
|
|
|
|
|
virtual void Packet(RakNet::BitStream *bs, bool send);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PACKETPLAYERREGIONCHANGE_HPP
|