You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
565 B
C++
25 lines
565 B
C++
//
|
|
// Created by koncord on 05.01.16.
|
|
//
|
|
|
|
#include "PacketPlayerPosition.hpp"
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
|
|
using namespace std;
|
|
using namespace mwmp;
|
|
|
|
PacketPlayerPosition::PacketPlayerPosition(RakNet::RakPeerInterface *peer) : PlayerPacket(peer)
|
|
{
|
|
packetID = ID_PLAYER_POSITION;
|
|
priority = MEDIUM_PRIORITY;
|
|
//reliability = UNRELIABLE_SEQUENCED;
|
|
}
|
|
|
|
void PacketPlayerPosition::Packet(RakNet::BitStream *bs, bool send)
|
|
{
|
|
PlayerPacket::Packet(bs, send);
|
|
|
|
RW(player->position, send, 1);
|
|
RW(player->direction, send, 1);
|
|
}
|