diff --git a/Engine.Core/Abstract/ITransform.cs b/Engine.Core/Abstract/ITransform.cs index 724bc4a..a52e39c 100644 --- a/Engine.Core/Abstract/ITransform.cs +++ b/Engine.Core/Abstract/ITransform.cs @@ -78,7 +78,21 @@ public interface ITransform : IEnumerable /// IReadOnlyList Children { get; } + /// + /// Sets the parent of this . + /// + /// The parent to set. void SetParent(ITransform? transform); + + /// + /// Adds a child to this . + /// + /// The child to add. void AddChild(ITransform transform); + + /// + /// Removes a child from this . + /// + /// The child to remove. void RemoveChild(ITransform transform); }