Exemple #1
0
 public MGMClientManager(Scene scene, MGMLog log)
 {
     this.scene = scene;
     this.log   = log;
 }
Exemple #2
0
 public MGMClient(string firstName, string lastName, UUID agentID, Vector3 position, UUID owner, bool senseAsAgent, Scene scene, MGMLog log) : base(firstName, lastName, agentID, position, owner, senseAsAgent, scene)
 {
     this.log = log;
 }
 public MGMLink(IPEndPoint mgmAddress, MGMLog log)
 {
     uplink = mgmAddress;
     this.log = log;
     connectionTest = new Timer(timerTick,null,Timeout.Infinite,connectionTestIntervalms);
 }
 public MGMClientManager(Scene scene, MGMLog log)
 {
     this.scene = scene;
     this.log = log;
 }
 public MGMClient(string firstName, string lastName, UUID agentID, Vector3 position, UUID owner, bool senseAsAgent, Scene scene, MGMLog log)
     : base(firstName, lastName, agentID, position, owner, senseAsAgent, scene)
 {
     this.log = log;
 }
 public MGMLink(IPEndPoint mgmAddress, MGMLog log)
 {
     uplink         = mgmAddress;
     this.log       = log;
     connectionTest = new Timer(timerTick, null, Timeout.Infinite, connectionTestIntervalms);
 }