aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs12
1 files changed, 10 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index 70cd45e..dededd4 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -122,12 +122,20 @@ namespace OpenSim.Region.Environment.Scenes
122 122
123 protected BaseHttpServer m_httpListener; 123 protected BaseHttpServer m_httpListener;
124 124
125 protected Dictionary<string, IRegionModule> m_modules = new Dictionary<string, IRegionModule>(); 125 /// <value>
126 /// All the region modules attached to this scene.
127 /// </value>
126 public Dictionary<string, IRegionModule> Modules 128 public Dictionary<string, IRegionModule> Modules
127 { 129 {
128 get { return m_modules; } 130 get { return m_modules; }
129 } 131 }
132 protected Dictionary<string, IRegionModule> m_modules = new Dictionary<string, IRegionModule>();
133
134 /// <value>
135 /// The module interfaces available from this scene.
136 /// </value>
130 protected Dictionary<Type, List<object> > ModuleInterfaces = new Dictionary<Type, List<object> >(); 137 protected Dictionary<Type, List<object> > ModuleInterfaces = new Dictionary<Type, List<object> >();
138
131 protected Dictionary<string, object> ModuleAPIMethods = new Dictionary<string, object>(); 139 protected Dictionary<string, object> ModuleAPIMethods = new Dictionary<string, object>();
132 protected Dictionary<string, ICommander> m_moduleCommanders = new Dictionary<string, ICommander>(); 140 protected Dictionary<string, ICommander> m_moduleCommanders = new Dictionary<string, ICommander>();
133 141
@@ -3129,7 +3137,7 @@ namespace OpenSim.Region.Environment.Scenes
3129 #region Module Methods 3137 #region Module Methods
3130 3138
3131 /// <summary> 3139 /// <summary>
3132 /// 3140 /// Add a module to this scene.
3133 /// </summary> 3141 /// </summary>
3134 /// <param name="name"></param> 3142 /// <param name="name"></param>
3135 /// <param name="module"></param> 3143 /// <param name="module"></param>