corrade-vassal – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 vero 1 using System;
2 using System.Reflection;
3 using GridProxy;
4  
5 class ProxyMain
6 {
7 public static void Main(string[] args)
8 {
9 ProxyFrame p = new ProxyFrame(args);
10 ProxyPlugin analyst = new Analyst(p);
11 analyst.Init();
12 p.proxy.Start();
13 }
14 }