コード例 #1
0
        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);
            }
        }
コード例 #2
0
 public void AddTimeline(TimelinePrototype timeline)
 {
     Timelines.Add(timeline);
 }
コード例 #3
0
 public TimelineInfo(TimelinePrototype timeline, BasicFunctionPair function)
 {
     Timeline  = timeline;
     Functions = function;
 }