11 lines
239 B
C#
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);
|
|
}
|
|
} |