aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces
diff options
context:
space:
mode:
authorubit2012-08-25 16:33:29 +0200
committerubit2012-08-25 16:33:29 +0200
commit7a4dba2fdc4b2f33921cc931a7102abd25600927 (patch)
tree873d526493b8278a255173923a3c228bb228eeb4 /OpenSim/Region/Framework/Interfaces
parent try fixing building.. (diff)
parentMerge branch 'avination' into ubitwork (diff)
downloadopensim-SC_OLD-7a4dba2fdc4b2f33921cc931a7102abd25600927.zip
opensim-SC_OLD-7a4dba2fdc4b2f33921cc931a7102abd25600927.tar.gz
opensim-SC_OLD-7a4dba2fdc4b2f33921cc931a7102abd25600927.tar.bz2
opensim-SC_OLD-7a4dba2fdc4b2f33921cc931a7102abd25600927.tar.xz
Merge branch 'ubitwork' of ssh://3dhosting.de/var/git/careminster into ubitwork
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IRegionConsole.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IRegionConsole.cs b/OpenSim/Region/Framework/Interfaces/IRegionConsole.cs
index 4d261d6..5d5ce34 100644
--- a/OpenSim/Region/Framework/Interfaces/IRegionConsole.cs
+++ b/OpenSim/Region/Framework/Interfaces/IRegionConsole.cs
@@ -30,8 +30,12 @@ using OpenSim.Framework;
30 30
31namespace OpenSim.Region.Framework.Interfaces 31namespace OpenSim.Region.Framework.Interfaces
32{ 32{
33 public delegate void ConsoleMessage(UUID toAgentID, string message);
34
33 public interface IRegionConsole 35 public interface IRegionConsole
34 { 36 {
37 event ConsoleMessage OnConsoleMessage;
38
35 bool RunCommand(string command, UUID invokerID); 39 bool RunCommand(string command, UUID invokerID);
36 void SendConsoleOutput(UUID agentID, string message); 40 void SendConsoleOutput(UUID agentID, string message);
37 void AddCommand(string module, bool shared, string command, string help, string longhelp, CommandDelegate fn); 41 void AddCommand(string module, bool shared, string command, string help, string longhelp, CommandDelegate fn);