2006-11-22 00:09:31 +00:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2006-11-22 08:20:02 +00:00
|
|
|
|
2006-11-24 22:27:15 +00:00
|
|
|
namespace libsecondlife.TestClient
|
2006-11-22 00:09:31 +00:00
|
|
|
{
|
2006-11-27 23:13:48 +00:00
|
|
|
public class Program
|
|
|
|
|
{
|
|
|
|
|
static void Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
if(args.Length < 3 || args.Length == 4)
|
|
|
|
|
{
|
|
|
|
|
Console.WriteLine("Usage: TestClient.ext firstname lastname password [master name]");
|
|
|
|
|
}
|
|
|
|
|
TestClient testTool = new TestClient(args[0], args[1], args[2]);
|
|
|
|
|
if(args.Length > 4) testTool.Master = args[3] + " " + args[4];
|
2006-11-22 00:09:31 +00:00
|
|
|
testTool.Run();
|
2006-11-27 23:13:48 +00:00
|
|
|
}
|
2006-11-22 00:09:31 +00:00
|
|
|
}
|
|
|
|
|
}
|