Beispiel #1
0
 protected void Say(string msg)
 {
     if (IsCurrentAlgorithm)
     {
         Node.Say(msg);
     }
 }
Beispiel #2
0
 protected void Say(string msg, int channel)
 {
     if (IsCurrentAlgorithm)
     {
         Node.Say(channel, msg);
     }
 }