2022-03-09 21:46:49 +03:00
|
|
|
using UnityEngine.Events;
|
2022-03-16 13:56:32 +03:00
|
|
|
using UnityEngine.InputSystem;
|
2022-03-09 21:46:49 +03:00
|
|
|
|
|
|
|
namespace Syntriax.Modules.Movement.VariableMovement
|
|
|
|
{
|
|
|
|
public interface IVariableMovementWithState : IVariableMovement
|
|
|
|
{
|
|
|
|
bool Enabled { get; set; }
|
|
|
|
UnityEvent<bool> OnToggleStateChanged { get; }
|
2022-03-16 13:56:32 +03:00
|
|
|
IInputActionCollection InputCollection { set; }
|
2022-03-09 21:46:49 +03:00
|
|
|
}
|
|
|
|
}
|