CapersProject/Assets/02.Scripts/Interface/IStateMachine.cs
2024-10-22 21:41:31 +09:00

11 lines
246 B
C#

using UnityEngine;
namespace BlueWater.Interfaces
{
public interface IStateMachine<T> where T : MonoBehaviour
{
void EnterState(T character);
void UpdateState(T character);
void ExitState(T character);
}
}