mirror of
https://github.com/opensim/opensim.git
synced 2026-05-27 20:35:59 +08:00
13 lines
294 B
C#
13 lines
294 B
C#
using OpenSim.Region.Environment.Scenes;
|
|
|
|
namespace OpenSim.Region.Environment.Interfaces
|
|
{
|
|
public interface IRegionModule
|
|
{
|
|
void Initialise(Scene scene);
|
|
void PostInitialise();
|
|
void CloseDown();
|
|
string GetName();
|
|
bool IsSharedModule();
|
|
}
|
|
} |