diff options
author | Tedd Hansen | 2007-09-12 13:03:21 +0000 |
---|---|---|
committer | Tedd Hansen | 2007-09-12 13:03:21 +0000 |
commit | dcaab9103ce1b7475872ee3224ccf58c1266f95e (patch) | |
tree | 729cc307787d2ab58d40f95998bb7a2ccc66ed2c /OpenSim/Tools/OpenSim.GUI/Program.cs | |
parent | I think 1.0f makes a better offset than 1.2f for basic physics (less floating, (diff) | |
download | opensim-SC_OLD-dcaab9103ce1b7475872ee3224ccf58c1266f95e.zip opensim-SC_OLD-dcaab9103ce1b7475872ee3224ccf58c1266f95e.tar.gz opensim-SC_OLD-dcaab9103ce1b7475872ee3224ccf58c1266f95e.tar.bz2 opensim-SC_OLD-dcaab9103ce1b7475872ee3224ccf58c1266f95e.tar.xz |
Early alpha version of a GUI tool to configure and start OpenSim. Currently can start an already configured Grid server.
Diffstat (limited to 'OpenSim/Tools/OpenSim.GUI/Program.cs')
-rw-r--r-- | OpenSim/Tools/OpenSim.GUI/Program.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/OpenSim/Tools/OpenSim.GUI/Program.cs b/OpenSim/Tools/OpenSim.GUI/Program.cs new file mode 100644 index 0000000..a849b1b --- /dev/null +++ b/OpenSim/Tools/OpenSim.GUI/Program.cs | |||
@@ -0,0 +1,20 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Windows.Forms; | ||
4 | |||
5 | namespace OpenSim.GUI | ||
6 | { | ||
7 | static class Program | ||
8 | { | ||
9 | /// <summary> | ||
10 | /// The main entry point for the application. | ||
11 | /// </summary> | ||
12 | [STAThread] | ||
13 | static void Main() | ||
14 | { | ||
15 | Application.EnableVisualStyles(); | ||
16 | Application.SetCompatibleTextRenderingDefault(false); | ||
17 | Application.Run(new Main()); | ||
18 | } | ||
19 | } | ||
20 | } \ No newline at end of file | ||