using System; using UnityEngine.InputSystem; namespace Syntriax.Modules.Movement.VariableMovement { public interface IVariableMovementWithState : IVariableMovement { bool Enabled { get; set; } Action OnToggleStateChanged { get; set; } IInputActionCollection InputCollection { set; } } }