diff options
author | Mic Bowman | 2012-07-31 10:45:37 -0700 |
---|---|---|
committer | Mic Bowman | 2012-07-31 10:45:37 -0700 |
commit | a76a289d11086dd99d345390e58a43b66b053470 (patch) | |
tree | 60b1ef6d3890d9636a1bbb9b47758847e30b88dd /OpenSim/Region/Framework | |
parent | BulletSim: update the DLLs and SOs. This fixes the exception on shutdown (diff) | |
download | opensim-SC-a76a289d11086dd99d345390e58a43b66b053470.zip opensim-SC-a76a289d11086dd99d345390e58a43b66b053470.tar.gz opensim-SC-a76a289d11086dd99d345390e58a43b66b053470.tar.bz2 opensim-SC-a76a289d11086dd99d345390e58a43b66b053470.tar.xz |
Adds support to ScriptModuleComms for region modules to export
constants to the script engine.
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs b/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs index bfe1e8d..ed71a95 100644 --- a/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs +++ b/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs | |||
@@ -67,6 +67,10 @@ namespace OpenSim.Region.Framework.Interfaces | |||
67 | /// <param name="key"></param> | 67 | /// <param name="key"></param> |
68 | void DispatchReply(UUID scriptId, int code, string text, string key); | 68 | void DispatchReply(UUID scriptId, int code, string text, string key); |
69 | 69 | ||
70 | /// For constants | ||
71 | void RegisterConstant(string cname, object value); | ||
72 | object LookupModConstant(string cname); | ||
73 | |||
70 | // For use ONLY by the script API | 74 | // For use ONLY by the script API |
71 | void RaiseEvent(UUID script, string id, string module, string command, string key); | 75 | void RaiseEvent(UUID script, string id, string module, string command, string key); |
72 | } | 76 | } |