Added an event to change the background music.

This commit is contained in:
stiffly
2016-02-24 14:18:42 +01:00
parent f72dea3852
commit 9783f9c650
5 changed files with 41 additions and 8 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifndef Events_ChangeBGM_h__
#define Events_ChangeBGM_h__
#include <string>
#include "../Engine/Core/EventBroker.h"
namespace Events
{
struct ChangeBGM : Event
{
std::string FilePath = "";
};
}
#endif // Events_ChangeBGM_h__