Exemplo n.º 1
0
 public RawAccelSettings(
     DriverSettings accelSettings,
     GUISettings guiSettings)
 {
     AccelerationSettings = accelSettings;
     GUISettings          = guiSettings;
 }
Exemplo n.º 2
0
 public bool Equals(GUISettings other)
 {
     return(DPI == other.DPI &&
            PollRate == other.PollRate &&
            ShowLastMouseMove == other.ShowLastMouseMove &&
            ShowVelocityAndGain == other.ShowVelocityAndGain);
 }
Exemplo n.º 3
0
 public bool Equals(GUISettings other)
 {
     return(DPI == other.DPI &&
            PollRate == other.PollRate &&
            ShowLastMouseMove == other.ShowLastMouseMove &&
            ShowVelocityAndGain == other.ShowVelocityAndGain &&
            AutoWriteToDriverOnStartup == other.AutoWriteToDriverOnStartup);
 }