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-04-09 05:51:28 +00:00
|
|
|
class PacketActorAuthority : public ActorPacket
|
2017-04-05 01:06:45 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
PacketActorAuthority(RakNet::RakPeerInterface *peer);
|
|
|
|
|
2019-12-04 08:17:33 +00:00
|
|
|
virtual void Packet(RakNet::BitStream *newBitstream, bool send);
|
2017-04-05 01:06:45 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PACKETACTORAUTHORITY_HPP
|