disable instruments (for now)

This commit is contained in:
Mister_Nebula 2020-12-06 10:13:13 +00:00
parent c3dee2c3ae
commit 3f9db41045

View File

@ -6,8 +6,6 @@ namespace QSB
public class QSBInputManager : MonoBehaviour
{
public static QSBInputManager Instance;
public static event InputEvent ChertTaunt;
public static event InputEvent EskerTaunt;
@ -20,8 +18,8 @@ namespace QSB
public static event InputEvent ExitTaunt;
public void Awake() => Instance = this;
// TODO : finish instruments - disabled for 0.7.0 release
/*
public void Update()
{
if (Input.GetKey(KeyCode.T))
@ -55,5 +53,6 @@ namespace QSB
ExitTaunt?.Invoke();
}
}
*/
}
}