* More work on MiniRegionModule module.

This commit is contained in:
Adam Frisby
2009-03-04 20:28:11 +00:00
parent b57497fd41
commit ea9bb2f741
5 changed files with 275 additions and 0 deletions

View File

@@ -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();
}
}