diff options
Diffstat (limited to 'Client/Assets/Scripts/XUtliPoolLib/ISeqListRef.2.cs')
-rw-r--r-- | Client/Assets/Scripts/XUtliPoolLib/ISeqListRef.2.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XUtliPoolLib/ISeqListRef.2.cs b/Client/Assets/Scripts/XUtliPoolLib/ISeqListRef.2.cs new file mode 100644 index 00000000..9af70e5d --- /dev/null +++ b/Client/Assets/Scripts/XUtliPoolLib/ISeqListRef.2.cs @@ -0,0 +1,14 @@ +using System;
+
+namespace XUtliPoolLib
+{
+ public interface ISeqListRef<T>
+ {
+ T this[int index, int key]
+ {
+ get;
+ }
+
+ int Count { get; }
+ }
+}
|