mirror of
https://github.com/opensim/opensim.git
synced 2026-06-01 15:35:44 +08:00
22 lines
406 B
C#
22 lines
406 B
C#
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; }
|
|
}
|
|
}
|
|
}
|