mirror of
https://github.com/opensim/opensim.git
synced 2026-07-22 16:05:42 +08:00
12 lines
212 B
C#
12 lines
212 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
|
|
{
|
|
interface IHost
|
|
{
|
|
IObject Object { get; }
|
|
}
|
|
}
|