mirror of
https://github.com/opensim/opensim.git
synced 2026-05-31 06:45:53 +08:00
16 lines
326 B
C#
16 lines
326 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenSim.Region.Environment.Interfaces
|
|
{
|
|
public interface IRegionModule
|
|
{
|
|
void Initialise(Scenes.Scene scene);
|
|
void PostInitialise();
|
|
void CloseDown();
|
|
string GetName();
|
|
bool IsSharedModule();
|
|
}
|
|
}
|