summaryrefslogtreecommitdiff
path: root/grapher/Layouts/NaturalGainLayout.cs
diff options
context:
space:
mode:
Diffstat (limited to 'grapher/Layouts/NaturalGainLayout.cs')
-rw-r--r--grapher/Layouts/NaturalGainLayout.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/grapher/Layouts/NaturalGainLayout.cs b/grapher/Layouts/NaturalGainLayout.cs
new file mode 100644
index 0000000..e062850
--- /dev/null
+++ b/grapher/Layouts/NaturalGainLayout.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace grapher.Layouts
+{
+ public class NaturalGainLayout : LayoutBase
+ {
+ public NaturalGainLayout()
+ : base()
+ {
+ Name = "NaturalGain";
+ Index = 7;
+ ShowOptions = new bool[] { true, true, true, false };
+ OptionNames = new string[] { Offset, Acceleration, Limit, string.Empty };
+ }
+ }
+}