forked from teamnwah/openmw-tes3coop
16 lines
382 B
C++
16 lines
382 B
C++
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
||
|
#include <components/openmw-mp/Log.hpp>
|
||
|
#include "PacketActorInteraction.hpp"
|
||
|
|
||
|
using namespace mwmp;
|
||
|
|
||
|
PacketActorInteraction::PacketActorInteraction(RakNet::RakPeerInterface *peer) : ActorPacket(peer)
|
||
|
{
|
||
|
packetID = ID_ACTOR_INTERACTION;
|
||
|
}
|
||
|
|
||
|
void PacketActorInteraction::Actor(BaseActor &actor, bool send)
|
||
|
{
|
||
|
// Placeholder
|
||
|
}
|