Ejemplo n.º 1
0
        public Monitor()
        {
            opensim = new OpenSimMonitor();
            chimera = new ChimeraMonitor();
            clients = new ClientMonitor();

            installation = default_installation;

            chimera.Clients = clients;
            Reporter.start();

            hotkey = new Hotkey();
            hotkey.KeyCode = Keys.F5;
            hotkey.Pressed += new HandledEventHandler(hostkey_keypressed);
        }
Ejemplo n.º 2
0
 public Client(string name, ClientMonitor monitor)
 {
     this.name = name;
     this.monitor = monitor;
     running = false;
 }