* 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,21 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
{
class Host : IHost
{
private readonly IObject m_obj;
public Host(IObject m_obj)
{
this.m_obj = m_obj;
}
public IObject Object
{
get { return m_obj; }
}
}
}