예제 #1
0
 void ITicker.GetPath(ref List <Guid> nodes)
 {
     nodes.Add(_Id);
     if (_CurrentTicker != null)
     {
         _CurrentTicker.GetPath(ref nodes);
     }
 }
예제 #2
0
 void ITicker.GetPath(ref List <Guid> nodes)
 {
     nodes.Add(_Id);
     _Ticker.GetPath(ref nodes);
 }