21 lines
385 B
C#
21 lines
385 B
C#
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public struct PopulationNeed
|
|
{
|
|
public byte TierIndex;
|
|
|
|
public PopulationNeedType Type;
|
|
|
|
public int ProductHandle;
|
|
|
|
public ushort HappinessScore;
|
|
|
|
public byte ConsumptionRate;
|
|
|
|
public byte FetchThreshold;
|
|
|
|
public ushort YieldOnFetch;
|
|
|
|
public ushort Current;
|
|
}
|
|
} |