mirror of
https://github.com/opensim/opensim.git
synced 2026-05-16 19:56:04 +08:00
27 lines
557 B
C#
27 lines
557 B
C#
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; }
|
|
}
|
|
}
|
|
}
|