* Renamed all other examples containing SL to Grid* git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1977 52acb1d6-8a22-11de-b505-999d5b087335
14 lines
266 B
C#
14 lines
266 B
C#
using System;
|
|
using System.Reflection;
|
|
using GridProxy;
|
|
|
|
class ProxyMain
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
ProxyFrame p = new ProxyFrame(args);
|
|
ProxyPlugin analyst = new Analyst(p);
|
|
analyst.Init();
|
|
p.proxy.Start();
|
|
}
|
|
} |