diff options
| author | Jacob Palecki <[email protected]> | 2020-07-31 12:20:11 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-07-31 12:20:11 -0700 |
| commit | 6537db04f7e717eda2f21e007cdba7e13b7f559e (patch) | |
| tree | efb65bf3f305f376ea75f4f687b08bf8998c020f /grapher/AccelerationSettings.cs | |
| parent | Add class for storing settings from file (diff) | |
| parent | Merge pull request #6 from a1xd/st-refactor (diff) | |
| download | rawaccel-6537db04f7e717eda2f21e007cdba7e13b7f559e.tar.xz rawaccel-6537db04f7e717eda2f21e007cdba7e13b7f559e.zip | |
Show no settings for off, remove unused class for PR
Diffstat (limited to 'grapher/AccelerationSettings.cs')
| -rw-r--r-- | grapher/AccelerationSettings.cs | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/grapher/AccelerationSettings.cs b/grapher/AccelerationSettings.cs deleted file mode 100644 index dd026e8..0000000 --- a/grapher/AccelerationSettings.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace grapher -{ - public class AccelerationSettings - { - public double SensitivityX { get; } - - public double SensitivityY { get; } - - public double Rotation { get; } - - public double Offset { get; } - - public double WeightX { get; } - - public double WeightY { get; } - - public double CapX { get; } - - public double CapY { get; } - - public int AccelerationType { get; } - - public double Acceleration { get; } - - public double LimitOrExponent { get; } - - public double Midpoint { get; } - } -} |