mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 14:16:07 +08:00
* More work on MiniRegionModule module.
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
|
||||
{
|
||||
abstract class MiniModuleBase
|
||||
{
|
||||
private IWorld m_world;
|
||||
private IHost m_host;
|
||||
|
||||
public void InitMiniModule(IWorld world, IHost host)
|
||||
{
|
||||
m_world = world;
|
||||
m_host = host;
|
||||
}
|
||||
|
||||
protected IWorld World
|
||||
{
|
||||
get { return m_world; }
|
||||
}
|
||||
|
||||
protected IHost Host
|
||||
{
|
||||
get { return m_host; }
|
||||
}
|
||||
|
||||
protected abstract void Start();
|
||||
protected abstract void Stop();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user