2016-01-12 03:41:44 +00:00
|
|
|
//
|
|
|
|
// Created by koncord on 05.01.16.
|
|
|
|
//
|
|
|
|
|
2017-02-05 07:01:33 +00:00
|
|
|
#ifndef OPENMW_PACKETPLAYERPOSITION_HPP
|
|
|
|
#define OPENMW_PACKETPLAYERPOSITION_HPP
|
2016-01-12 03:41:44 +00:00
|
|
|
|
2016-10-19 16:37:10 +00:00
|
|
|
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
|
2016-01-12 03:41:44 +00:00
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2017-02-05 07:01:33 +00:00
|
|
|
class PacketPlayerPosition : public PlayerPacket
|
2016-01-12 03:41:44 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-02-05 07:01:33 +00:00
|
|
|
PacketPlayerPosition(RakNet::RakPeerInterface *peer);
|
2016-01-12 03:41:44 +00:00
|
|
|
|
2017-03-06 09:44:08 +00:00
|
|
|
virtual void Packet(RakNet::BitStream *bs, bool send);
|
2016-01-12 03:41:44 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-02-05 07:01:33 +00:00
|
|
|
#endif //OPENMW_PACKETPLAYERPOSITION_HPP
|