Movement/VariableMovement/IVariableMovementWithState.cs

13 lines
330 B
C#
Raw Normal View History

using System;
using UnityEngine.InputSystem;
2022-03-09 21:46:49 +03:00
namespace Syntriax.Modules.Movement.VariableMovement
{
public interface IVariableMovementWithState : IVariableMovement
{
bool Enabled { get; set; }
Action<bool> OnToggleStateChanged { get; set; }
IInputActionCollection InputCollection { set; }
2022-03-09 21:46:49 +03:00
}
}