Files
opensim/OpenSim/Region/OptionalModules/Scripting/Minimodule/MRMBase.cs
Adam Frisby 65990de390 MRM Scripting Changes
* Renames MiniRegionModule to MRMModule to make it more distinct from the actual Mini Region Module[s] executed in Scene.
* Renames MiniRegionModuleBase to MRMBase for convenience. MRM's need to be adjusted to inherit from MRMBase.
2009-03-05 00:52:59 +00:00

28 lines
592 B
C#

namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
{
public abstract class MRMBase
{
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; }
}
public abstract void Start();
public abstract void Stop();
}
}