1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
using grapher.Models.Calculations; namespace grapher.Models.Charts.ChartState { public class XYOneGraphState : ChartState { public XYOneGraphState( ChartXY sensitivityChart, ChartXY velocityChart, ChartXY gainChart, AccelData accelData) : base( sensitivityChart, velocityChart, gainChart, accelData) { } } }