1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-22 22:53:52 +00:00
openmw-tes3mp/components/openmw-mp/Packets/World/PacketMusicPlay.hpp

18 lines
401 B
C++
Raw Normal View History

2016-11-20 20:54:49 +00:00
#ifndef OPENMW_PACKETMUSICPLAY_HPP
#define OPENMW_PACKETMUSICPLAY_HPP
#include <components/openmw-mp/Packets/World/WorldPacket.hpp>
namespace mwmp
{
class PacketMusicPlay final: public WorldPacket
2016-11-20 20:54:49 +00:00
{
public:
explicit PacketMusicPlay(RakNet::RakPeerInterface *peer);
2016-11-20 20:54:49 +00:00
void Object(WorldObject &worldObject, bool send) override;
2016-11-20 20:54:49 +00:00
};
}
#endif //OPENMW_PACKETMUSICPLAY_HPP