2017-04-11 08:37:38 +00:00
|
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
|
|
#include <components/openmw-mp/Log.hpp>
|
|
|
|
#include "PacketActorCellChange.hpp"
|
|
|
|
|
|
|
|
using namespace mwmp;
|
|
|
|
|
|
|
|
PacketActorCellChange::PacketActorCellChange(RakNet::RakPeerInterface *peer) : ActorPacket(peer)
|
|
|
|
{
|
|
|
|
packetID = ID_ACTOR_CELL_CHANGE;
|
|
|
|
}
|
|
|
|
|
2017-06-02 19:42:10 +00:00
|
|
|
void PacketActorCellChange::Actor(BaseActor &actor, bool send)
|
2017-04-11 08:37:38 +00:00
|
|
|
{
|
2017-06-02 19:42:10 +00:00
|
|
|
RW(actor.cell.mData, send, 1);
|
|
|
|
RW(actor.cell.mName, send, 1);
|
2017-04-11 08:37:38 +00:00
|
|
|
|
2017-06-02 19:42:10 +00:00
|
|
|
RW(actor.position, send, 1);
|
|
|
|
RW(actor.direction, send, 1);
|
2017-04-11 08:37:38 +00:00
|
|
|
}
|