forked from teamnwah/openmw-tes3coop
29 lines
600 B
C++
29 lines
600 B
C++
//
|
|
// Created by koncord on 18.04.17.
|
|
//
|
|
|
|
#ifndef OPENMW_PROCESSORMUSICPLAY_HPP
|
|
#define OPENMW_PROCESSORMUSICPLAY_HPP
|
|
|
|
|
|
#include "apps/openmw/mwmp/WorldProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorMusicPlay : public WorldProcessor
|
|
{
|
|
public:
|
|
ProcessorMusicPlay()
|
|
{
|
|
BPP_INIT(ID_MUSIC_PLAY)
|
|
}
|
|
|
|
virtual void Do(WorldPacket &packet, WorldEvent &event)
|
|
{
|
|
LOG_MESSAGE_SIMPLE(Log::LOG_VERBOSE, "Received %s", strPacketID.c_str());
|
|
event.playMusic();
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSORSCRIPTGLOBALSHORT_HPP
|