1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 15:19:55 +00:00
openmw-tes3mp/components/openmw-mp/Packets/Actor/PacketActorPosition.cpp
2019-08-19 21:39:33 +03:00

18 lines
461 B
C++

#include <components/openmw-mp/NetworkMessages.hpp>
#include <components/openmw-mp/TimedLog.hpp>
#include "PacketActorPosition.hpp"
using namespace mwmp;
PacketActorPosition::PacketActorPosition(RakNet::RakPeerInterface *peer) : ActorPacket(peer)
{
packetID = ID_ACTOR_POSITION;
}
void PacketActorPosition::Actor(BaseActor &actor, bool send)
{
RW(actor.position, send, true);
RW(actor.direction, send, true);
actor.hasPositionData = true;
}