mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 05:49:56 +00:00
18 lines
335 B
C++
18 lines
335 B
C++
#ifndef OPENMW_PROCESSORMUSICPLAY_HPP
|
|
#define OPENMW_PROCESSORMUSICPLAY_HPP
|
|
|
|
#include "../ObjectProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorMusicPlay : public ObjectProcessor
|
|
{
|
|
public:
|
|
ProcessorMusicPlay()
|
|
{
|
|
BPP_INIT(ID_MUSIC_PLAY)
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSORMUSICPLAY_HPP
|