This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
using System;
namespace KdTree
{
// Token: 0x0200000B RID: 11
public interface INearestNeighbourList<TItem, TDistance>
{
// Token: 0x06000047 RID: 71
bool Add(TItem item, TDistance distance);
// Token: 0x06000048 RID: 72
TItem GetFurtherest();
// Token: 0x06000049 RID: 73
TItem RemoveFurtherest();
// Token: 0x1700000E RID: 14
// (get) Token: 0x0600004A RID: 74
int MaxCapacity { get; }
// Token: 0x1700000F RID: 15
// (get) Token: 0x0600004B RID: 75
int Count { get; }
}
}