Files
fishtanks/src/Events/PlayBGM.h
T
2014-05-28 22:06:26 +02:00

19 lines
219 B
C++

#ifndef Event_PlayBGM_h__
#define Event_PlayBGM_h__
#include "EventBroker.h"
#include "Entity.h"
namespace Events
{
struct PlayBGM : Event
{
std::string Resource;
bool Loop;
};
}
#endif // Event_PlayBGM_h__