Files
squidout/include/Sound/EStopSound.h
T
2015-09-23 14:14:11 +02:00

24 lines
226 B
C++

#ifndef EVENTS_ESTOPSOUND_H__
#define EVENTS_ESTOPSOUND_H__
#include "Core/EventBroker.h"
namespace dd
{
namespace Events
{
struct StopSound : public Event
{
std::string path;
};
}
}
#endif