Removed temporary debug code

This commit is contained in:
Stiffly
2014-06-02 16:25:00 +02:00
parent 128ff7ae4b
commit 4ac67a22ac
2 changed files with 0 additions and 18 deletions
-15
View File
@@ -42,21 +42,6 @@ void InputManager::Update(double dt)
}
}
if(m_CurrentKeyState[GLFW_KEY_Z]) //TEMP
{
Events::PlaySFX e;
e.Resource = "Sounds/BGM/DarkHorse.mp3";
e.Loop = true;
e.Emitter = 58;
EventBroker->Publish(e);
}
if(m_CurrentKeyState[GLFW_KEY_P]) //TEMP
{
Events::StopSound e;
e.Emitter = 58;
EventBroker->Publish(e);
}
// Mouse buttons
for (int i = 0; i <= GLFW_MOUSE_BUTTON_LAST; ++i)
{
-3
View File
@@ -12,9 +12,6 @@
#include "Events/LockMouse.h"
#include "Events/GamepadAxis.h"
#include "Events/GamepadButton.h"
#include "Events/PlaySFX.h" //Temp
#include "Events/PlayBGM.h" //Temp
#include "Events/StopSound.h" //Temp
class InputManager
{