mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 03:45:35 +08:00
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. :)
This commit is contained in:
12
OpenSim/Tools/OpenSim.GridLaunch/GUI/IGUI.cs
Normal file
12
OpenSim/Tools/OpenSim.GridLaunch/GUI/IGUI.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace OpenSim.GridLaunch.GUI
|
||||
{
|
||||
public interface IGUI
|
||||
{
|
||||
void StartGUI();
|
||||
void StopGUI();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user