Use primary constructor for QuadtreeItem
This commit is contained in:
parent
f6e5a34278
commit
6f86e3576a
@ -1,22 +1,16 @@
|
|||||||
namespace SpatialCollections
|
namespace SpatialCollections
|
||||||
{
|
{
|
||||||
internal struct QuadtreeItem<T>
|
internal struct QuadtreeItem<T>(T entity, int next)
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Index of the next item in the same leaf vertex.
|
/// Index of the next item in the same leaf vertex.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int Next;
|
public int Next = next;
|
||||||
|
|
||||||
public T Entity;
|
public T Entity = entity;
|
||||||
|
|
||||||
public QuadtreeItem(T entity) : this(entity, -1)
|
public QuadtreeItem(T entity) : this(entity, -1)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
public QuadtreeItem(T entity, int next)
|
|
||||||
{
|
|
||||||
Next = next;
|
|
||||||
Entity = entity;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user