20 lines
368 B
C#
20 lines
368 B
C#
using System;
|
|
|
|
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
[Serializable]
|
|
public class PopulationNeedAuthoring
|
|
{
|
|
public PopulationNeedType Type;
|
|
|
|
public ProductDefinition Product;
|
|
|
|
public int HappinessScore = 20;
|
|
|
|
public int ConsumptionRate;
|
|
|
|
public int FetchThreshold;
|
|
|
|
public int YieldOnFetch;
|
|
}
|
|
} |