refactor: renamed AssertHelpers namespace to Core.Debug

This commit is contained in:
2025-04-13 19:12:34 +03:00
parent 58eb373c79
commit dae72b11c5
5 changed files with 15 additions and 21 deletions

View File

@@ -4,7 +4,6 @@ using System.Collections.Generic;
using System.Linq;
using Syntriax.Engine.Core.Abstract;
using Syntriax.Engine.Core.Helpers;
namespace Syntriax.Engine.Core;
@@ -141,7 +140,7 @@ public class BehaviourController : IBehaviourController
if (IsInitialized)
return false;
AssertHelpers.AssertHierarchyObjectAssigned(this);
Debug.AssertHelpers.AssertHierarchyObjectAssigned(this);
foreach (IBehaviour behaviour in behaviours)
behaviour.Initialize();