aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scripting/IScriptHost.cs
blob: 1c14264c4bb25ebb1d369e34eeda06f62e7da041 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using System.Collections.Generic;
using System.Text;
using libsecondlife;

namespace OpenSim.Region.Environment.Scenes.Scripting
{
    public interface IScriptHost
    {
        string Name { get; }
        LLUUID UUID { get; }
        LLVector3 AbsolutePosition { get; }
    }
}