Exemplo n.º 1
0
 protected Bread(MoistureLevel moisture, string name, TextureType texture)
 {
     Moisture = moisture;
     Name     = name;
     Texture  = texture;
 }
Exemplo n.º 2
0
 public Sourdough(MoistureLevel moisture, TextureType texture) : base(moisture, "Sourdough", texture)
 {
 }
Exemplo n.º 3
0
 public White(MoistureLevel moisture, TextureType texture) : base(moisture, "White", texture)
 {
 }
Exemplo n.º 4
0
 public Wheat(MoistureLevel moisture, TextureType texture) : base(moisture, "Wheat", texture)
 {
 }