aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scripting/NullScriptHost.cs
blob: a55c87ef518aa6eb8ba3718c0a2c946ed3d3d4af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;
using System.Text;
using libsecondlife;

namespace OpenSim.Region.Environment.Scenes.Scripting
{
    public class NullScriptHost : IScriptHost
    {
        LLVector3 m_pos = new LLVector3( 128, 128, 30 );
        public string Name
        {
            get { return "Object"; }
        }

        public LLUUID UUID
        {
            get { return LLUUID.Zero; }
        }

        public LLVector3 AbsolutePosition
        {
            get { return m_pos; }
        }
    }
}