aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/Minimodule/IHost.cs
blob: 123fa3835c58402ae579c46450a462e4063950b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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; }
    }
}