forked from teamnwah/openmw-tes3coop
18 lines
408 B
C++
18 lines
408 B
C++
|
#ifndef OPENMW_PACKETACTORAUTHORITY_HPP
|
||
|
#define OPENMW_PACKETACTORAUTHORITY_HPP
|
||
|
|
||
|
#include <components/openmw-mp/Packets/World/WorldPacket.hpp>
|
||
|
|
||
|
namespace mwmp
|
||
|
{
|
||
|
class PacketActorAuthority : public WorldPacket
|
||
|
{
|
||
|
public:
|
||
|
PacketActorAuthority(RakNet::RakPeerInterface *peer);
|
||
|
|
||
|
virtual void Packet(RakNet::BitStream *bs, bool send);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif //OPENMW_PACKETACTORAUTHORITY_HPP
|