diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index 70cd45ebb3..dededd40ca 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs @@ -122,12 +122,20 @@ namespace OpenSim.Region.Environment.Scenes protected BaseHttpServer m_httpListener; - protected Dictionary m_modules = new Dictionary(); + /// + /// All the region modules attached to this scene. + /// public Dictionary Modules { get { return m_modules; } } + protected Dictionary m_modules = new Dictionary(); + + /// + /// The module interfaces available from this scene. + /// protected Dictionary > ModuleInterfaces = new Dictionary >(); + protected Dictionary ModuleAPIMethods = new Dictionary(); protected Dictionary m_moduleCommanders = new Dictionary(); @@ -3129,7 +3137,7 @@ namespace OpenSim.Region.Environment.Scenes #region Module Methods /// - /// + /// Add a module to this scene. /// /// ///