mirror of
https://github.com/opensim/opensim.git
synced 2026-07-08 22:06:26 +08:00
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. :)
13 lines
195 B
C#
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();
|
|
}
|
|
}
|