mirror of
https://github.com/Bragin-Stepan/project-entity.git
synced 2026-03-02 14:29:23 +00:00
15 lines
304 B
C#
15 lines
304 B
C#
|
|
using _Project.Develop.Runtime.Utils.ReactiveManagement.Event;
|
|
|
|
namespace Assets._Project.Develop.Runtime.Utilities.StateMachineCore
|
|
{
|
|
public interface IState
|
|
{
|
|
IReadOnlyEvent Entered { get; }
|
|
IReadOnlyEvent Exited { get; }
|
|
|
|
void Enter();
|
|
void Exit();
|
|
}
|
|
}
|