2017-04-05 01:06:45 +00:00
|
|
|
#ifndef OPENMW_PACKETACTORAUTHORITY_HPP
|
|
|
|
#define OPENMW_PACKETACTORAUTHORITY_HPP
|
|
|
|
|
2017-04-09 05:51:28 +00:00
|
|
|
#include <components/openmw-mp/Packets/Actor/ActorPacket.hpp>
|
2017-04-05 01:06:45 +00:00
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2017-12-09 02:13:14 +00:00
|
|
|
class PacketActorAuthority final: public ActorPacket
|
2017-04-05 01:06:45 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-12-09 02:13:14 +00:00
|
|
|
explicit PacketActorAuthority(RakNet::RakPeerInterface *peer);
|
2017-04-05 01:06:45 +00:00
|
|
|
|
2017-12-09 02:13:14 +00:00
|
|
|
void Packet(RakNet::BitStream *bs, bool send) override;
|
2017-04-05 01:06:45 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PACKETACTORAUTHORITY_HPP
|