package Scripts.CollectionGenericObjects; public interface ICollectionGenericObjects { int getCount(); void SetMaxCount(int count); int Insert(T obj); T Remove(int position); T Get(int position); CollectionType GetCollectionType(); Iterable GetItems(); void ClearCollection(); }