2022-11-13 18:07:54 +03:00
|
|
|
using System;
|
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; }
|
2022-11-13 18:07:54 +03:00
|
|
|
Action<bool> OnToggleStateChanged { get; set; }
|
2022-03-16 13:56:32 +03:00
|
|
|
IInputActionCollection InputCollection { set; }
|
2022-03-09 21:46:49 +03:00
|
|
|
}
|
|
|
|
}
|