15 lines
347 B
C#
15 lines
347 B
C#
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public struct BuildingProductionState
|
|
{
|
|
public ProducerState State;
|
|
|
|
public Recipe Recipe;
|
|
|
|
public int Progress;
|
|
|
|
public ProductionRequirements MetRequirements;
|
|
|
|
public bool AllRequirementsMet => MetRequirements == ProductionRequirements.All;
|
|
}
|
|
} |