1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 07:49:56 +00:00
openmw-tes3mp/components/openmw-mp/Packets/World/PacketVideoPlay.cpp

18 lines
420 B
C++
Raw Normal View History

2016-10-24 14:52:19 +00:00
#include <components/openmw-mp/NetworkMessages.hpp>
#include "PacketVideoPlay.hpp"
using namespace mwmp;
PacketVideoPlay::PacketVideoPlay(RakNet::RakPeerInterface *peer) : WorldPacket(peer)
{
packetID = ID_VIDEO_PLAY;
2016-10-24 14:52:19 +00:00
}
void PacketVideoPlay::Packet(RakNet::BitStream *bs, WorldEvent *event, bool send)
{
WorldPacket::Packet(bs, event, send);
RW(event->video, send);
RW(event->allowSkipping, send);
}