Files
crtr/Assets/Cryville/Common/Collections/IPairList.cs
2023-03-26 23:25:20 +08:00

9 lines
200 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);
}
}