// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Collections.Generic; using osu.Framework.Graphics.Containers; namespace osu.Framework.Graphics { /// /// Interface for s which compose child s. /// s implementing this interface can be used in s. /// public interface ICompositeDrawNode { /// /// The child s to draw. /// List Children { get; set; } /// /// Whether should be updated by the parenting . /// bool AddChildDrawNodes { get; } } }