Example #1
0
 public TerrainUnit(StratumType type)
 {
     this.Type      = type;
     this.Nutrients = 30;    // TODO Defaults to value of 30 on both parameters.
     this.Humidity  = 30;    // TODO
 }
Example #2
0
 public TerrainUnit(StratumType type, int nutrients, int humidity)
 {
     this.Type      = type;
     this.Nutrients = nutrients;
     this.Humidity  = humidity;
 }