17 lines
396 B
C#
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;
|
|
}
|
|
}
|
|
} |