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