Files
libremetaverse/Programs/SLProxy/SLProxyMain.cs
John Hurliman 660db80eb5 Moved programs into the Programs folder
git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1958 52acb1d6-8a22-11de-b505-999d5b087335
2008-07-22 23:00:32 +00:00

14 lines
256 B
C#

using System;
using System.Reflection;
using SLProxy;
class ProxyMain
{
public static void Main(string[] args)
{
ProxyFrame p = new ProxyFrame(args);
ProxyPlugin analyst = new Analyst(p);
analyst.Init();
p.proxy.Start();
}
}