forked from mirror/openmw-tes3mp
19 lines
345 B
C++
19 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
|