public LandmarkSocket(string serverIP, int hostPort, int devicePort, string adbPath, LandmarkResultSet resultSet)
 {
     this.serverIP   = serverIP;
     this.hostPort   = hostPort;
     this.devicePort = devicePort;
     this.adbPath    = adbPath;
     this.resultSet  = resultSet;
 }
示例#2
0
 private void Awake()
 {
     resultSet = this.GetComponent <LandmarkResultSet>();
     socket    = new LandmarkSocket(serverIP, hostPort, devicePort, adbPath, resultSet);
 }