mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 04:19:55 +00:00
16 lines
387 B
C++
16 lines
387 B
C++
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
#include "PacketMusicPlay.hpp"
|
|
|
|
using namespace mwmp;
|
|
|
|
PacketMusicPlay::PacketMusicPlay(RakNet::RakPeerInterface *peer) : WorldPacket(peer)
|
|
{
|
|
packetID = ID_VIDEO_PLAY;
|
|
}
|
|
|
|
void PacketMusicPlay::Packet(RakNet::BitStream *bs, WorldEvent *event, bool send)
|
|
{
|
|
WorldPacket::Packet(bs, event, send);
|
|
|
|
RW(event->filename, send);
|
|
}
|