internal GraphPrototype(BinaryReader br) { XAxisTitle = br.ReadString(); YAxisTitle = br.ReadString(); int nTimelines = br.ReadInt32(); for (int i = 0; i < nTimelines; ++i) { var timeline = new TimelinePrototype(br); Timelines.Add(timeline); } }
public void AddTimeline(TimelinePrototype timeline) { Timelines.Add(timeline); }
public TimelineInfo(TimelinePrototype timeline, BasicFunctionPair function) { Timeline = timeline; Functions = function; }