refactor: renamed assert helper and moved to Debug subfolder

This commit is contained in:
2025-05-03 15:37:52 +03:00
parent 5de08b8fe4
commit c7aafd85bc
6 changed files with 13 additions and 11 deletions

View File

@@ -66,8 +66,8 @@ public abstract class BehaviourBase : BaseEntity, IBehaviour
protected override void InitializeInternal()
{
Debug.AssertHelpers.AssertBehaviourControllerAssigned(this);
Debug.AssertHelpers.AssertStateEnableAssigned(this);
Debug.Assert.AssertBehaviourControllerAssigned(this);
Debug.Assert.AssertStateEnableAssigned(this);
}
private void OnStateEnabledChanged(IStateEnable sender, bool previousState) => UpdateActive();