Stop sound event up and running.

This commit is contained in:
Stiffly
2015-09-23 14:14:11 +02:00
parent 4f341250d7
commit 346ee13dd5
7 changed files with 74 additions and 33 deletions
+23
View File
@@ -0,0 +1,23 @@
#ifndef EVENTS_ESTOPSOUND_H__
#define EVENTS_ESTOPSOUND_H__
#include "Core/EventBroker.h"
namespace dd
{
namespace Events
{
struct StopSound : public Event
{
std::string path;
};
}
}
#endif