* Script prototype

This commit is contained in:
lbsa71
2007-04-03 16:50:17 +00:00
parent ba2c94721c
commit ad39897144
12 changed files with 219 additions and 47 deletions

View File

@@ -0,0 +1,13 @@
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();
}
}