aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/Framework/IUGAIMCore.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Grid/Framework/IUGAIMCore.cs3
1 files changed, 0 insertions, 3 deletions
diff --git a/OpenSim/Grid/Framework/IUGAIMCore.cs b/OpenSim/Grid/Framework/IUGAIMCore.cs
index 77245ce..a7df0d4 100644
--- a/OpenSim/Grid/Framework/IUGAIMCore.cs
+++ b/OpenSim/Grid/Framework/IUGAIMCore.cs
@@ -30,14 +30,11 @@ using OpenSim.Framework.Servers;
30 30
31namespace OpenSim.Grid.Framework 31namespace OpenSim.Grid.Framework
32{ 32{
33 public delegate void ShowHelpDelegate(string[] helpArgs);
34
35 public interface IUGAIMCore 33 public interface IUGAIMCore
36 { 34 {
37 T Get<T>(); 35 T Get<T>();
38 void RegisterInterface<T>(T iface); 36 void RegisterInterface<T>(T iface);
39 bool TryGet<T>(out T iface); 37 bool TryGet<T>(out T iface);
40 BaseHttpServer GetHttpServer(); 38 BaseHttpServer GetHttpServer();
41 void RegisterConsoleHelpDelegate(ShowHelpDelegate showHelp);
42 } 39 }
43} 40}