mirror of
https://github.com/opensim/opensim.git
synced 2026-05-30 22:37:13 +08:00
14 lines
266 B
C#
14 lines
266 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using log4net;
|
|
|
|
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
|
|
{
|
|
public interface IHost
|
|
{
|
|
IObject Object { get; }
|
|
ILog Console { get; }
|
|
}
|
|
}
|