コード例 #1
0
 public RawAccelSettings(
     DriverSettings accelSettings,
     GUISettings guiSettings)
 {
     AccelerationSettings = accelSettings;
     GUISettings          = guiSettings;
 }
コード例 #2
0
ファイル: GUISettings.cs プロジェクト: jev0n/rawaccel
 public bool Equals(GUISettings other)
 {
     return(DPI == other.DPI &&
            PollRate == other.PollRate &&
            ShowLastMouseMove == other.ShowLastMouseMove &&
            ShowVelocityAndGain == other.ShowVelocityAndGain);
 }
コード例 #3
0
ファイル: GUISettings.cs プロジェクト: termhn/rawaccel
 public bool Equals(GUISettings other)
 {
     return(DPI == other.DPI &&
            PollRate == other.PollRate &&
            ShowLastMouseMove == other.ShowLastMouseMove &&
            ShowVelocityAndGain == other.ShowVelocityAndGain &&
            AutoWriteToDriverOnStartup == other.AutoWriteToDriverOnStartup);
 }