CapersProject/Assets/02.Scripts/Interface/IStateMachine.cs

11 lines
246 B
C#
Raw Normal View History

2024-10-14 11:13:08 +00:00
using UnityEngine;
namespace BlueWater.Interfaces
{
2024-10-22 12:41:31 +00:00
public interface IStateMachine<T> where T : MonoBehaviour
2024-10-14 11:13:08 +00:00
{
void EnterState(T character);
void UpdateState(T character);
void ExitState(T character);
}
}