namespace DanieleMarotta.RiversongCodeShowcase { public struct BuildingProductionState { public ProducerState State; public Recipe Recipe; public int Progress; public ProductionRequirements MetRequirements; public bool AllRequirementsMet => MetRequirements == ProductionRequirements.All; } }