Files
riversong-code-showcase/Source/Riversong/Game/World/Agents/Critters/WorldCritterHerdsState.cs
2026-05-21 16:04:49 +02:00

10 lines
222 B
C#

using System.Collections.Generic;
using Unity.Mathematics;
namespace DanieleMarotta.RiversongCodeShowcase
{
public class WorldCritterHerdsState
{
public List<int2> EligibleCenters { get; } = new();
}
}