diff options
Diffstat (limited to 'grapher/Layouts/LinearLayout.cs')
| -rw-r--r-- | grapher/Layouts/LinearLayout.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/grapher/Layouts/LinearLayout.cs b/grapher/Layouts/LinearLayout.cs new file mode 100644 index 0000000..2a0358e --- /dev/null +++ b/grapher/Layouts/LinearLayout.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 LinearLayout : LayoutBase + { + public LinearLayout() + : base() + { + Name = "Linear"; + Index = 1; + ShowOptions = new bool[] { true, true, false, false }; + OptionNames = new string[] { Offset, Acceleration, string.Empty, string.Empty }; + } + } +} |