14 lines
268 B
C#
14 lines
268 B
C#
![]() |
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();
|
||
|
}
|
||
|
}
|