Files
crtr/Assets/Cryville/Common/Collections/IPairList.cs

9 lines
203 B
C#

using System.Collections;
namespace Cryville.Common.Collections {
public interface IPairList : IList {
void Add(object key, object value);
void Insert(int index, object key, object value);
}
}