Files
2026-05-21 16:04:49 +02:00

21 lines
385 B
C#

namespace DanieleMarotta.RiversongCodeShowcase
{
public struct PopulationNeed
{
public byte TierIndex;
public PopulationNeedType Type;
public int ProductHandle;
public ushort HappinessScore;
public byte ConsumptionRate;
public byte FetchThreshold;
public ushort YieldOnFetch;
public ushort Current;
}
}