using System; using System.Collections.Generic; namespace DominionBase { public interface IGameObject { string Name { get; } string ImageName { get; } Type Type { get; } Guid UniqueId { get; } string ToString(); } public class IGameObjectCollection : List { public IGameObjectCollection() { } public IGameObjectCollection(int capacity) : base(capacity) { } public IGameObjectCollection(IEnumerable collection) : base(collection) { } } }