#region usings
using System.Collections.Generic;
using SM.Base.Window;
#endregion
namespace SM.Base.Scene
{
///
/// Adds functions, that is required for a collection.
///
public interface IShowCollection
{
///
/// 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);
}
}