BREAKING CHANGE: removed IUniverseObject.SetParent and made Parent property settable

This commit is contained in:
2025-08-05 10:46:25 +03:00
parent 11612ff0db
commit 3452194941
4 changed files with 40 additions and 43 deletions

View File

@@ -83,7 +83,7 @@ public class Universe : BaseEntity, IUniverse
public void Remove(IUniverseObject universeObject)
{
universeObject.SetParent(null);
universeObject.Parent = null;
RemoveIncursive(universeObject);
}