Exemplo n.º 1
0
 public RChem()
 {
     m_cBus     = new CacheBus();
     _ipAddress = m_cBus._ipAddress;
     tick_chemistry(true);
     startEngine();
 }
Exemplo n.º 2
0
 public RChem(string ipaddress, bool master)
 {
     m_cBus     = new CacheBus(ipaddress);
     _ipAddress = m_cBus._ipAddress;
     if (master == true)
     {
         send_chemistry(true);
     }
     else
     {
         tick_chemistry(true);
     }
     startEngine();
 }