mirror of
https://github.com/opensim/opensim.git
synced 2026-07-21 15:35:41 +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; }
|
|
}
|
|
}
|