diff options
Diffstat (limited to 'OpenSim.Framework/IScriptAPI.cs')
-rw-r--r-- | OpenSim.Framework/IScriptAPI.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim.Framework/IScriptAPI.cs b/OpenSim.Framework/IScriptAPI.cs new file mode 100644 index 0000000..2f58198 --- /dev/null +++ b/OpenSim.Framework/IScriptAPI.cs | |||
@@ -0,0 +1,13 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenSim.Framework.Interfaces | ||
6 | { | ||
7 | public interface IScriptAPI | ||
8 | { | ||
9 | OSVector3 GetEntityPosition(uint localID); | ||
10 | void SetEntityPosition(uint localID, float x, float y, float z); | ||
11 | uint GetRandomAvatarID(); | ||
12 | } | ||
13 | } | ||