using System.Collections.Generic; using SM.Base.Contexts; namespace SM.Base.Scene { /// /// Adds functions, that is required for a collection. /// /// The type of show item. public interface IShowCollection where TItem : IShowItem { /// /// The object collection. /// List Objects { get; } /// /// This draws the objects in the list. /// /// The context how the objects need to be drawn. void Draw(DrawContext context); } }