* minor: Just some method commentary before turning to another subject
parent
899f2a80d7
commit
ed97f290c9
|
@ -122,12 +122,20 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
|
|
||||||
protected BaseHttpServer m_httpListener;
|
protected BaseHttpServer m_httpListener;
|
||||||
|
|
||||||
protected Dictionary<string, IRegionModule> m_modules = new Dictionary<string, IRegionModule>();
|
/// <value>
|
||||||
|
/// All the region modules attached to this scene.
|
||||||
|
/// </value>
|
||||||
public Dictionary<string, IRegionModule> Modules
|
public Dictionary<string, IRegionModule> Modules
|
||||||
{
|
{
|
||||||
get { return m_modules; }
|
get { return m_modules; }
|
||||||
}
|
}
|
||||||
|
protected Dictionary<string, IRegionModule> m_modules = new Dictionary<string, IRegionModule>();
|
||||||
|
|
||||||
|
/// <value>
|
||||||
|
/// The module interfaces available from this scene.
|
||||||
|
/// </value>
|
||||||
protected Dictionary<Type, List<object> > ModuleInterfaces = new Dictionary<Type, List<object> >();
|
protected Dictionary<Type, List<object> > ModuleInterfaces = new Dictionary<Type, List<object> >();
|
||||||
|
|
||||||
protected Dictionary<string, object> ModuleAPIMethods = new Dictionary<string, object>();
|
protected Dictionary<string, object> ModuleAPIMethods = new Dictionary<string, object>();
|
||||||
protected Dictionary<string, ICommander> m_moduleCommanders = new Dictionary<string, ICommander>();
|
protected Dictionary<string, ICommander> m_moduleCommanders = new Dictionary<string, ICommander>();
|
||||||
|
|
||||||
|
@ -3129,7 +3137,7 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
#region Module Methods
|
#region Module Methods
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
/// Add a module to this scene.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="name"></param>
|
/// <param name="name"></param>
|
||||||
/// <param name="module"></param>
|
/// <param name="module"></param>
|
||||||
|
|
Loading…
Reference in New Issue