feat(core): IBehavior.IsActive

This commit is contained in:
2024-01-28 14:56:44 +03:00
parent dc96b93024
commit 1c7d941bc1
4 changed files with 21 additions and 8 deletions

View File

@@ -16,4 +16,9 @@ public interface IBehaviour : IEntity, IAssignableBehaviourController, IAssignab
/// Call priority of the <see cref="IBehaviour"/>.
/// </summary>
int Priority { get; set; }
/// <summary>
/// If the <see cref="IBehaviour"/> is active.
/// </summary>
bool IsActive { get; }
}