Early alpha version of a GUI tool to configure and start OpenSim. Currently can start an already configured Grid server.

This commit is contained in:
Tedd Hansen
2007-09-12 13:03:21 +00:00
parent 26eebf6b32
commit dcaab9103c
12 changed files with 1176 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace OpenSim.GUI
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Main());
}
}
}