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/PacketVideoPlay.hpp

18 lines
393 B
C++
Raw Normal View History

2016-10-24 14:52:19 +00:00
#ifndef OPENMW_PACKETVIDEOPLAY_HPP
#define OPENMW_PACKETVIDEOPLAY_HPP
#include <components/openmw-mp/Packets/World/WorldPacket.hpp>
namespace mwmp
{
class PacketVideoPlay final: public WorldPacket
2016-10-24 14:52:19 +00:00
{
public:
explicit PacketVideoPlay(RakNet::RakPeerInterface *peer);
2016-10-24 14:52:19 +00:00
void Object(WorldObject &obj, bool send) override;
2016-10-24 14:52:19 +00:00
};
}
#endif //OPENMW_PACKETVIDEOPLAY_HPP