summaryrefslogtreecommitdiff
path: root/grapher/Layouts/LinearLayout.cs
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2020-07-30 02:00:20 -0700
committerJacob Palecki <[email protected]>2020-07-30 02:00:20 -0700
commitf315e8160e984df93be6667929db34749aa25cfa (patch)
tree19684a4f515fc6185e750d7cca3424fa7d96937b /grapher/Layouts/LinearLayout.cs
parentFully use acceloptions (diff)
downloadrawaccel-f315e8160e984df93be6667929db34749aa25cfa.tar.xz
rawaccel-f315e8160e984df93be6667929db34749aa25cfa.zip
Use class heirarchy for layout types
Diffstat (limited to 'grapher/Layouts/LinearLayout.cs')
-rw-r--r--grapher/Layouts/LinearLayout.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/grapher/Layouts/LinearLayout.cs b/grapher/Layouts/LinearLayout.cs
new file mode 100644
index 0000000..b500b6b
--- /dev/null
+++ b/grapher/Layouts/LinearLayout.cs
@@ -0,0 +1,19 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace grapher.Layouts
+{
+ public class LinearLayout : LayoutBase
+ {
+ public LinearLayout()
+ {
+ Name = "Linear";
+ Index = 1;
+ Show = new bool[] { true, false, false };
+ OptionNames = new string[] { Acceleration, string.Empty, string.Empty };
+ }
+ }
+}