Esempio n. 1
0
 private void Update(IOverClockInput input)
 {
     this.CoreClockDelta   = input.CoreClockDelta;
     this.MemoryClockDelta = input.MemoryClockDelta;
     this.PowerCapacity    = input.PowerCapacity;
     this.TempLimit        = input.TempLimit;
     this.Cool             = input.Cool;
 }
Esempio n. 2
0
        public void Update(IOverClockInput data)
        {
            this._coreClockDelta   = data.CoreClockDelta;
            this._memoryClockDelta = data.MemoryClockDelta;
            this._powerCapacity    = data.PowerCapacity;
            this._tempLimit        = data.TempLimit;
            this._cool             = data.Cool;

            OnPropertyChanged(nameof(CoreClockDelta));
            OnPropertyChanged(nameof(MemoryClockDelta));
            OnPropertyChanged(nameof(PowerCapacity));
            OnPropertyChanged(nameof(TempLimit));
            OnPropertyChanged(nameof(Cool));
        }