mirror of
https://github.com/Bragin-Stepan/project-entity.git
synced 2026-03-02 14:29:23 +00:00
8 lines
172 B
C#
8 lines
172 B
C#
namespace Assets._Project.Develop.Runtime.Utilities.StateMachineCore
|
|
{
|
|
public interface IUpdatableState : IState
|
|
{
|
|
void Update(float deltaTime);
|
|
}
|
|
}
|