Fixed OpenAL Clean-up device. Added playBGM-event.

This commit is contained in:
Stiffly
2015-09-22 16:56:53 +02:00
parent 3f4ede4b7d
commit 5b6556e9fb
5 changed files with 77 additions and 13 deletions
+25
View File
@@ -0,0 +1,25 @@
#ifndef EVENTS_EPLAYBGM_H__
#define EVENTS_EPLAYBGM_H__
#include "Core/EventBroker.h"
namespace dd
{
namespace Events
{
struct PlayBGM : public Event
{
std::string path;
float volume = 1;
//TODO: Rethink this
bool SupportBGM;
};
}
}
#endif