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