mirror of
https://github.com/Bragin-Stepan/project-entity.git
synced 2026-03-02 22:31:10 +00:00
11 lines
237 B
C#
11 lines
237 B
C#
using System;
|
|
|
|
namespace _Project.Develop.Runtime.Utilities.StateMachine
|
|
{
|
|
public interface IStateChanger
|
|
{
|
|
event Action<State> Changed;
|
|
|
|
StateMachine ChangeState<TState>() where TState : State;
|
|
}
|
|
} |