Files
squidout/include/Sound/EStopSound.h
T

20 lines
222 B
C++

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