mirror of
https://github.com/opensim/opensim.git
synced 2026-05-20 07:05:46 +08:00
* 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
43 lines
885 B
C#
43 lines
885 B
C#
using OpenSim.Framework.Interfaces;
|
|
using OpenSim.Region.Environment.Interfaces;
|
|
using OpenSim.Region.Environment.Scenes;
|
|
|
|
namespace OpenSim.Region.Environment.Modules
|
|
{
|
|
public class AssetDownloadModule : IRegionModule
|
|
{
|
|
private Scene m_scene;
|
|
|
|
public AssetDownloadModule()
|
|
{
|
|
}
|
|
|
|
public void Initialise(Scene scene)
|
|
{
|
|
m_scene = scene;
|
|
m_scene.EventManager.OnNewClient += NewClient;
|
|
}
|
|
|
|
public void PostInitialise()
|
|
{
|
|
}
|
|
|
|
public void Close()
|
|
{
|
|
}
|
|
|
|
public string Name
|
|
{
|
|
get { return "AssetDownloadModule"; }
|
|
}
|
|
|
|
public bool IsSharedModule
|
|
{
|
|
get { return false; }
|
|
}
|
|
|
|
public void NewClient(IClientAPI client)
|
|
{
|
|
}
|
|
}
|
|
} |