15 lines
445 B
C#
15 lines
445 B
C#
|
using UnityEngine.Events;
|
||
|
using UnityEngine.InputSystem;
|
||
|
|
||
|
namespace Syntriax.Modules.Movement.VariableMovement
|
||
|
{
|
||
|
public interface IVariableMovementController
|
||
|
{
|
||
|
IVariableMovement ActiveVariableMovement { get; }
|
||
|
UnityEvent<IVariableMovement> OnVariableMovementChanged { get; }
|
||
|
IInputActionCollection InputActionCollection { get; set; }
|
||
|
|
||
|
void LoadVariableMovementCollection(VMCollection collection);
|
||
|
}
|
||
|
}
|