mirror of
https://github.com/opensim/opensim.git
synced 2026-05-24 19:05:34 +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
13 lines
297 B
C#
13 lines
297 B
C#
using OpenSim.Region.Environment.Scenes;
|
|
|
|
namespace OpenSim.Region.Environment.Interfaces
|
|
{
|
|
public interface IRegionModule
|
|
{
|
|
void Initialise(Scene scene);
|
|
void PostInitialise();
|
|
void Close();
|
|
string Name { get; }
|
|
bool IsSharedModule { get; }
|
|
}
|
|
} |