Added a announcer volume channel.

This commit is contained in:
stiffly
2016-02-24 15:08:39 +01:00
parent cf3d1b5b00
commit 7dbb9e452b
7 changed files with 86 additions and 6 deletions
@@ -0,0 +1,17 @@
#ifndef Events_PlayAnnouncerVoice_h__
#define Events_PlayAnnouncerVoice_h__
#include <string>
#include "../Engine/Core/EventBroker.h"
namespace Events
{
struct PlayAnonuncerVoice : public Event
{
std::string FilePath = "";
};
}
#endif