Exemplo n.º 1
0
 public bool Equals(RandDecay other) => this.Min == other.Min && this.Max == other.Max && this.Rate == other.Rate;
Exemplo n.º 2
0
 public RandDecay(RandDecay other)
 {
     this.Min  = other.Min;
     this.Max  = other.Max;
     this.Rate = other.Rate;
 }