Files
axyz/include/Engine/Sound/EPlayAnnouncerVoice.h
T
2016-02-24 15:08:39 +01:00

18 lines
244 B
C++

#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