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; } } }