10 lines
222 B
C#
10 lines
222 B
C#
using System.Collections.Generic;
|
|
using Unity.Mathematics;
|
|
|
|
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public class WorldCritterHerdsState
|
|
{
|
|
public List<int2> EligibleCenters { get; } = new();
|
|
}
|
|
} |