CapersProject/Assets/02.Scripts/BlueWater/Interface/IStateMachine.cs
2025-02-03 19:03:41 +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);
}
}