Added invert mouse option.

This commit is contained in:
dexyfex
2018-01-02 11:07:24 +11:00
Unverified
parent c9fb099db7
commit 4cbf85bd03
7 changed files with 62 additions and 3 deletions
+12
View File
@@ -686,5 +686,17 @@ namespace CodeWalker.Properties {
this["XInputMoveSpeed"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool MouseInvert {
get {
return ((bool)(this["MouseInvert"]));
}
set {
this["MouseInvert"] = value;
}
}
}
}