MosswartMassacre/Unused/Decal.Adapter.Wrappers/IIndexedProvider.cs
2025-06-09 02:03:11 +02:00

12 lines
240 B
C#

using System.Collections;
namespace Decal.Adapter.Wrappers;
public interface IIndexedProvider<IndexType>
{
object GetIndexedObject(IndexType index, int item);
IEnumerator GetEnumerator(IndexType index);
int Count(IndexType index);
}