* Gave ModuleLoader some good lovin'

* Introduced ModuleLoader.PickupModules that currently picks up IRegionModule:s from /bin
* Made LogBase thread-safe (or at least not thread-ignorant)
* Ignored some genned files
This commit is contained in:
lbsa71
2007-10-10 18:24:13 +00:00
parent 87d99ee2a2
commit a40e7100a2
21 changed files with 1527 additions and 1483 deletions

View File

@@ -85,18 +85,18 @@ namespace OpenSim.Region.Environment.Modules
{
}
public void CloseDown()
public void Close()
{
}
public string GetName()
public string Name
{
return m_name;
get { return m_name; }
}
public bool IsSharedModule()
public bool IsSharedModule
{
return false;
get { return false; }
}
/**********************************************