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