mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 07:49:56 +00:00
21 lines
596 B
C++
21 lines
596 B
C++
//
|
|
// Created by koncord on 13.01.16.
|
|
//
|
|
|
|
#include "PacketPlayerStatsDynamic.hpp"
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
|
|
using namespace mwmp;
|
|
|
|
PacketPlayerStatsDynamic::PacketPlayerStatsDynamic(RakNet::RakPeerInterface *peer) : PlayerPacket(peer)
|
|
{
|
|
packetID = ID_PLAYER_STATS_DYNAMIC;
|
|
}
|
|
|
|
void PacketPlayerStatsDynamic::Packet(RakNet::BitStream *bs, bool send)
|
|
{
|
|
PlayerPacket::Packet(bs, send);
|
|
RW(player->creatureStats.mDynamic[0], send); // health
|
|
RW(player->creatureStats.mDynamic[1], send); // magic
|
|
RW(player->creatureStats.mDynamic[2], send); // fatigue
|
|
}
|