14 lines
263 B
C#
14 lines
263 B
C#
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public struct BuildingSleepState
|
|
{
|
|
public int RestedWorkerCount;
|
|
|
|
public int AllocatedWorkerCount;
|
|
|
|
public bool HasHomelessWorkers;
|
|
|
|
public float EfficiencyModifier;
|
|
}
|
|
}
|