Example #1
0
 public void SendToDoctor(NetCommand command)
 {
     if (doctor != null)
     {
         doctor.sendToDoctor(command);
     }
 }
Example #2
0
 public void SendToDoctor(NetCommand command)
 {
     if (doctor != null)
     {
         doctor.sendToDoctor(command);
     }
     else
     {
         backlog.Add(command);
     }
 }