riversong code showcase
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user