openmw-tes3coop/components/openmw-mp/Packets/Actor/PacketActorAuthority.hpp

18 lines
423 B
C++
Raw Normal View History

#ifndef OPENMW_PACKETACTORAUTHORITY_HPP
#define OPENMW_PACKETACTORAUTHORITY_HPP
#include <components/openmw-mp/Packets/Actor/ActorPacket.hpp>
namespace mwmp
{
class PacketActorAuthority final: public ActorPacket
{
public:
explicit PacketActorAuthority(RakNet::RakPeerInterface *peer);
void Packet(RakNet::BitStream *bs, bool send) override;
};
}
#endif //OPENMW_PACKETACTORAUTHORITY_HPP