Пример #1
0
 public void SetValue(LightTowerItem other)
 {
     this.Type    = other.Type;
     this.IsBeep  = other.IsBeep;
     this.Shining = other.Shining;
 }
Пример #2
0
 public bool Equal(LightTowerItem other)
 {
     return(this.Type == other.Type && this.Shining == other.Shining && this.IsBeep == other.IsBeep);
 }