2017-05-29 01:43:52 +00:00
|
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
|
|
#include <components/openmw-mp/Log.hpp>
|
|
|
|
#include "PacketActorAI.hpp"
|
|
|
|
|
|
|
|
using namespace mwmp;
|
|
|
|
|
|
|
|
PacketActorAI::PacketActorAI(RakNet::RakPeerInterface *peer) : ActorPacket(peer)
|
|
|
|
{
|
|
|
|
packetID = ID_ACTOR_AI;
|
|
|
|
}
|
|
|
|
|
2017-06-02 19:42:10 +00:00
|
|
|
void PacketActorAI::Actor(BaseActor &actor, bool send)
|
2017-05-29 01:43:52 +00:00
|
|
|
{
|
2017-06-02 19:42:10 +00:00
|
|
|
// Placeholder to be filled in later
|
2017-05-29 01:43:52 +00:00
|
|
|
}
|