mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 15:19:55 +00:00
17 lines
528 B
C++
17 lines
528 B
C++
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
#include "PacketPlayerAnimPlay.hpp"
|
|
|
|
mwmp::PacketPlayerAnimPlay::PacketPlayerAnimPlay(RakNet::RakPeerInterface *peer) : PlayerPacket(peer)
|
|
{
|
|
packetID = ID_PLAYER_ANIM_PLAY;
|
|
}
|
|
|
|
void mwmp::PacketPlayerAnimPlay::Packet(RakNet::BitStream *newBitstream, bool send)
|
|
{
|
|
PlayerPacket::Packet(newBitstream, send);
|
|
|
|
RW(player->animation.groupname, send);
|
|
RW(player->animation.mode, send);
|
|
RW(player->animation.count, send);
|
|
RW(player->animation.persist, send);
|
|
}
|