chore: Removed Unnecessary Method from IButtonInputs

This commit is contained in:
Syntriax 2024-09-30 19:24:14 +03:00
parent e7c80871fe
commit 40d1ce7c68
1 changed files with 0 additions and 1 deletions

View File

@ -10,7 +10,6 @@ public interface IButtonInputs<T> : IAssignableStateEnable
void UnregisterOnRelease(T button, ButtonCallbackDelegate callback); void UnregisterOnRelease(T button, ButtonCallbackDelegate callback);
bool IsPressed(T button); bool IsPressed(T button);
bool WasPressed(T button);
delegate void ButtonCallbackDelegate(IButtonInputs<T> buttonInputs, T button); delegate void ButtonCallbackDelegate(IButtonInputs<T> buttonInputs, T button);
} }