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

17 lines
396 B
C#

namespace DanieleMarotta.RiversongCodeShowcase
{
public struct FertilityMapValue
{
public float CurrentFertility;
public float MaxFertility;
public int LockId;
public void Deconstruct(out float currentFertility, out float maxFertility)
{
currentFertility = CurrentFertility;
maxFertility = MaxFertility;
}
}
}