WIP pull request fixes

This commit is contained in:
stiffly
2016-03-12 14:26:09 +01:00
parent 28d576bfc0
commit 9942747d41
4 changed files with 15 additions and 51 deletions
@@ -1,21 +0,0 @@
#ifndef Systems_BackgroundMusicSystem_h__
#define Systems_BackgroundMusicSystem_h__
#include "../Engine/Core/System.h"
#include "../Engine/Core/EventBroker.h"
// Handles transitions between BGM's depending on the current state of the game.
class BackgroundMusicSystem : public PureSystem
{
public:
BackgroundMusicSystem(SystemParams params);
~BackgroundMusicSystem();
void UpdateComponent(EntityWrapper& entity, ComponentWrapper& cEmitter, double dt) override;
private:
void mainMenuLoop();
const std::string menu = "Audio/crosscounter.wav";
};
#endif // ifndef