2017-04-05 01:06:45 +00:00
|
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
2017-04-08 05:59:21 +00:00
|
|
|
#include <components/openmw-mp/Log.hpp>
|
2017-04-10 05:37:18 +00:00
|
|
|
#include "PacketActorTest.hpp"
|
2017-04-05 01:06:45 +00:00
|
|
|
|
|
|
|
using namespace mwmp;
|
|
|
|
|
2017-04-10 05:37:18 +00:00
|
|
|
PacketActorTest::PacketActorTest(RakNet::RakPeerInterface *peer) : ActorPacket(peer)
|
2017-04-05 01:06:45 +00:00
|
|
|
{
|
2017-04-10 05:37:18 +00:00
|
|
|
packetID = ID_ACTOR_TEST;
|
2017-04-05 01:06:45 +00:00
|
|
|
}
|
|
|
|
|
2017-06-02 19:42:10 +00:00
|
|
|
void PacketActorTest::Actor(BaseActor &actor, bool send)
|
2017-04-05 01:06:45 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|