OpenSimMirror/OpenSim.RegionServer/world/scripting/IScriptContext.cs

14 lines
268 B
C#
Raw Normal View History

2007-04-03 16:50:17 +00:00
using System;
using System.Collections.Generic;
using System.Text;
using libsecondlife;
namespace OpenSim.RegionServer.world.scripting
{
public interface IScriptContext
{
bool MoveTo(LLVector3 newPos);
LLVector3 GetPos();
}
}