コード例 #1
0
ファイル: IntervalTree.cs プロジェクト: yongweisun/CRYENGINE
 public RailGroup(string name, IIntervalGroupStyle style)
 {
     Name  = name;
     Style = style;
 }
コード例 #2
0
ファイル: IntervalTree.cs プロジェクト: yongweisun/CRYENGINE
 public int AddGroup(string name, IIntervalGroupStyle style)
 {
     m_groups.Add(new RailGroup(name, style));
     return(m_groups.Count - 1);
 }