mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 05:49:56 +00:00
15 lines
374 B
C++
15 lines
374 B
C++
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
#include "PacketVideoPlay.hpp"
|
|
|
|
using namespace mwmp;
|
|
|
|
PacketVideoPlay::PacketVideoPlay(RakNet::RakPeerInterface *peer) : WorldPacket(peer)
|
|
{
|
|
packetID = ID_VIDEO_PLAY;
|
|
}
|
|
|
|
void PacketVideoPlay::Object(WorldObject &worldObject, bool send)
|
|
{
|
|
RW(worldObject.filename, send);
|
|
RW(worldObject.allowSkipping, send);
|
|
}
|