diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Grid/GridServer/IGridCore.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Grid/GridServer/IGridCore.cs b/OpenSim/Grid/GridServer/IGridCore.cs new file mode 100644 index 0000000..dd0d140 --- /dev/null +++ b/OpenSim/Grid/GridServer/IGridCore.cs | |||
@@ -0,0 +1,13 @@ | |||
1 | using System; | ||
2 | using OpenSim.Framework.Servers; | ||
3 | |||
4 | namespace OpenSim.Grid.GridServer | ||
5 | { | ||
6 | public interface IGridCore | ||
7 | { | ||
8 | T Get<T>(); | ||
9 | void RegisterInterface<T>(T iface); | ||
10 | bool TryGet<T>(out T iface); | ||
11 | BaseHttpServer GetHttpServer(); | ||
12 | } | ||
13 | } | ||