Files
opensim/OpenSim/Tools/OpenSim.GridLaunch/GUI/IGUI.cs
Tedd Hansen f2cbc48a9e GUI for launching grids. Early version, but should work fine.
Will execute all OpenSim services redirect their input/output/errors to the selected "GUI module".
This version has following "GUI modules":
* Windows Forms
* Windows Service (doesn't work yet)
* Console
* TCP daemon

This means that OpenSim can now run in a single console for those who want that.

Console functionallity is not too rich yet, but code/framework is there... more to come. :)
2008-12-06 03:28:34 +00:00

13 lines
195 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OpenSim.GridLaunch.GUI
{
public interface IGUI
{
void StartGUI();
void StopGUI();
}
}