CapersProject/Assets/02.Scripts/Interface/IAnimationState.cs
2024-10-14 20:13:08 +09:00

11 lines
239 B
C#

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