forked from teamnwah/openmw-tes3coop
27148ce9eb
Additionally, make it slightly clearer who created which previously existing packets.
18 lines
345 B
C++
18 lines
345 B
C++
#ifndef OPENMW_PROCESSORVIDEOPLAY_HPP
|
|
#define OPENMW_PROCESSORVIDEOPLAY_HPP
|
|
|
|
#include "apps/openmw-mp/WorldProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorVideoPlay : public WorldProcessor
|
|
{
|
|
public:
|
|
ProcessorVideoPlay()
|
|
{
|
|
BPP_INIT(ID_VIDEO_PLAY)
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSORVIDEOPLAY_HPP
|