1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-20 05:53:50 +00:00
openmw-tes3mp/components/openmw-mp/Packets/World/PacketMusicPlay.cpp
2017-06-03 03:10:47 +08:00

14 lines
333 B
C++

#include <components/openmw-mp/NetworkMessages.hpp>
#include "PacketMusicPlay.hpp"
using namespace mwmp;
PacketMusicPlay::PacketMusicPlay(RakNet::RakPeerInterface *peer) : WorldPacket(peer)
{
packetID = ID_MUSIC_PLAY;
}
void PacketMusicPlay::Object(WorldObject &worldObject, bool send)
{
RW(worldObject.filename, send);
}