示例#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;
 }
示例#2
0
 public bool Equals(VerbalStructureDescription other)
 {
     return(Equals(InternalName, other.InternalName));
 }
示例#3
0
 public BuildingDescription(VerbalStructureDescription verbalStructureDescription, Knowledge unlockCost, ConstructionInformation constructionInformation, RenderInformation renderInformation, bool canExtractWater) : this(verbalStructureDescription, unlockCost, constructionInformation, null, renderInformation, canExtractWater)
 {
 }