mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 02:19:55 +00:00
16 lines
407 B
C++
16 lines
407 B
C++
#include "PacketPlayerMomentum.hpp"
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
|
|
using namespace mwmp;
|
|
|
|
PacketPlayerMomentum::PacketPlayerMomentum(RakNet::RakPeerInterface *peer) : PlayerPacket(peer)
|
|
{
|
|
packetID = ID_PLAYER_MOMENTUM;
|
|
priority = MEDIUM_PRIORITY;
|
|
}
|
|
|
|
void PacketPlayerMomentum::Packet(RakNet::BitStream *bs, bool send)
|
|
{
|
|
PlayerPacket::Packet(bs, send);
|
|
// Placeholder
|
|
}
|