BREAKING CHANGE: Renamed IInitialize.Initialized to IsInitialized

This commit is contained in:
2024-10-22 20:57:12 +03:00
parent fdc38fc800
commit 1f8fa78b76
7 changed files with 19 additions and 19 deletions

View File

@@ -36,7 +36,7 @@ public abstract class BehaviourBase : BaseEntity, IBehaviour
public bool Assign(IBehaviourController behaviourController)
{
if (Initialized)
if (IsInitialized)
return false;
_behaviourController = behaviourController;