Esempio n. 1
0
 public BuildingDescription(VerbalStructureDescription verbalStructureDescription, Knowledge unlockCost, ConstructionInformation constructionInformation, ProductionInformation productionInformation, RenderInformation renderInformation, bool canExtractWater)
 {
     ConstructionInformation    = constructionInformation;
     ProductionInformation      = productionInformation;
     RenderInformation          = renderInformation;
     CanExtractWater            = canExtractWater;
     VerbalStructureDescription = verbalStructureDescription;
     UnlockCost = unlockCost;
 }
Esempio n. 2
0
 public bool Equals(VerbalStructureDescription other)
 {
     return(Equals(InternalName, other.InternalName));
 }
Esempio n. 3
0
 public BuildingDescription(VerbalStructureDescription verbalStructureDescription, Knowledge unlockCost, ConstructionInformation constructionInformation, RenderInformation renderInformation, bool canExtractWater) : this(verbalStructureDescription, unlockCost, constructionInformation, null, renderInformation, canExtractWater)
 {
 }