public void SetValue(LightTowerItem other) { this.Type = other.Type; this.IsBeep = other.IsBeep; this.Shining = other.Shining; }
public bool Equal(LightTowerItem other) { return(this.Type == other.Type && this.Shining == other.Shining && this.IsBeep == other.IsBeep); }