using System.Collections.Generic; using SM.Base.Contexts; namespace SM.Base.Scene { public interface IShowCollection where TItem : IShowItem { List Objects { get; } void Draw(DrawContext context); } }