forked from teamnwah/openmw-tes3coop
18 lines
333 B
C++
18 lines
333 B
C++
#ifndef OPENMW_PROCESSORMUSICPLAY_HPP
|
|
#define OPENMW_PROCESSORMUSICPLAY_HPP
|
|
|
|
#include "../WorldProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorMusicPlay : public WorldProcessor
|
|
{
|
|
public:
|
|
ProcessorMusicPlay()
|
|
{
|
|
BPP_INIT(ID_MUSIC_PLAY)
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSORMUSICPLAY_HPP
|