mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 23:19:56 +00:00
17 lines
380 B
C++
17 lines
380 B
C++
#ifndef OPENMW_PACKETVIDEOPLAY_HPP
|
|
#define OPENMW_PACKETVIDEOPLAY_HPP
|
|
|
|
#include <components/openmw-mp/Packets/Object/ObjectPacket.hpp>
|
|
|
|
namespace mwmp
|
|
{
|
|
class PacketVideoPlay : public ObjectPacket
|
|
{
|
|
public:
|
|
PacketVideoPlay(RakNet::RakPeerInterface *peer);
|
|
|
|
virtual void Object(BaseObject &obj, bool send);
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PACKETVIDEOPLAY_HPP
|