aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/IRegionConsole.cs
diff options
context:
space:
mode:
authorMelanie2012-08-20 15:58:47 +0100
committerMelanie2012-08-20 15:58:47 +0100
commit7f7f005da47054a5874b57cab9f1cfe3cc5c1754 (patch)
tree6bba9dfb924e1504ba04b23ac22fb553adcf1090 /OpenSim/Region/Framework/Interfaces/IRegionConsole.cs
parentMerge branch 'master' into careminster (diff)
parentMake the console output from the reigon console hookable (diff)
downloadopensim-SC-7f7f005da47054a5874b57cab9f1cfe3cc5c1754.zip
opensim-SC-7f7f005da47054a5874b57cab9f1cfe3cc5c1754.tar.gz
opensim-SC-7f7f005da47054a5874b57cab9f1cfe3cc5c1754.tar.bz2
opensim-SC-7f7f005da47054a5874b57cab9f1cfe3cc5c1754.tar.xz
Merge branch 'avination' into careminster
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/IRegionConsole.cs')
-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);