mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 23:49:55 +00:00
18 lines
335 B
C++
18 lines
335 B
C++
#ifndef OPENMW_PROCESSORVIDEOPLAY_HPP
|
|
#define OPENMW_PROCESSORVIDEOPLAY_HPP
|
|
|
|
#include "../ObjectProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorVideoPlay : public ObjectProcessor
|
|
{
|
|
public:
|
|
ProcessorVideoPlay()
|
|
{
|
|
BPP_INIT(ID_VIDEO_PLAY)
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSORVIDEOPLAY_HPP
|