diff options
Diffstat (limited to 'grapher/Layouts/DefaultLayout.cs')
| -rw-r--r-- | grapher/Layouts/DefaultLayout.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/grapher/Layouts/DefaultLayout.cs b/grapher/Layouts/DefaultLayout.cs new file mode 100644 index 0000000..2ad3c0e --- /dev/null +++ b/grapher/Layouts/DefaultLayout.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace grapher.Layouts +{ + public class DefaultLayout : LayoutBase + { + public DefaultLayout() + { + Name = "Off"; + Index = 0; + Show = new bool[] { true, true, true }; + OptionNames = new string[] { Acceleration, $"{Limit}\\{Exponent}", Midpoint }; + } + } +} |