Exemplo n.º 1
0
 public Plywood(float id, string name, WoodshopMaterialType type, Sprite icon, float price, string thickness, string width, string length)
     : base(id, name, type, icon, price)
 {
     this.ThicknessInInches = thickness;
     this.WidthInFeet       = width;
     this.LengthInFeet      = length;
 }
Exemplo n.º 2
0
 public Softwood(float id, string name, WoodshopMaterialType type, Sprite icon, float price, string nominal, string actual, string length)
     : base(id, name, type, icon, price)
 {
     this.NomimalInches = nominal;
     this.ActualInches  = actual;
     this.LengthInFeet  = length;
 }
 public WoodshopMaterial(float id, string name, WoodshopMaterialType type, Sprite icon, float price = 0f)
     : base(id)
 {
     this.Name       = name;
     this.Type       = type;
     this.Icon       = icon;
     this.StorePrice = price;
 }
 public WoodshopMaterial(float id, string name, WoodshopMaterialType type)
     : base(id)
 {
     this.Name       = name;
     this.Type       = type;
     this.Icon       = null;
     this.StorePrice = 0f;
 }
Exemplo n.º 5
0
 public Hardwood(float id, string name, WoodshopMaterialType type, Sprite icon, float price, string roughSize, string nominalSize, string actualDimensionS1S, string actualDimensionS2S)
     : base(id, name, type, icon, price)
 {
     this.RoughSizeInInches = roughSize;
     this.NominalSize       = nominalSize;
     this.ActualDimensionSurfacedOneSide  = actualDimensionS1S;
     this.ActualDimensionSurfacedTwoSides = actualDimensionS2S;
 }
Exemplo n.º 6
0
 public Dowel(float id, string name, WoodshopMaterialType type, Sprite icon, float price, string diameter, string length)
     : base(id, name, type, icon, price)
 {
     this.DiameterInInches = diameter;
     this.LengthInInches   = length;
 }