diff options
author | ubit | 2012-08-25 16:33:29 +0200 |
---|---|---|
committer | ubit | 2012-08-25 16:33:29 +0200 |
commit | 7a4dba2fdc4b2f33921cc931a7102abd25600927 (patch) | |
tree | 873d526493b8278a255173923a3c228bb228eeb4 /OpenSim/Region/Framework/Interfaces/IRegionConsole.cs | |
parent | try fixing building.. (diff) | |
parent | Merge branch 'avination' into ubitwork (diff) | |
download | opensim-SC-7a4dba2fdc4b2f33921cc931a7102abd25600927.zip opensim-SC-7a4dba2fdc4b2f33921cc931a7102abd25600927.tar.gz opensim-SC-7a4dba2fdc4b2f33921cc931a7102abd25600927.tar.bz2 opensim-SC-7a4dba2fdc4b2f33921cc931a7102abd25600927.tar.xz |
Merge branch 'ubitwork' of ssh://3dhosting.de/var/git/careminster into ubitwork
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IRegionConsole.cs | 4 |
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 | ||
31 | namespace OpenSim.Region.Framework.Interfaces | 31 | namespace 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); |