diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Capabilities/LLSDUploadReply.cs (renamed from Common/OpenSim.Framework/Interfaces/Scripting/IScriptAPI.cs) | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/Common/OpenSim.Framework/Interfaces/Scripting/IScriptAPI.cs b/OpenSim/Region/Capabilities/LLSDUploadReply.cs index 0c1627b..83cf166 100644 --- a/Common/OpenSim.Framework/Interfaces/Scripting/IScriptAPI.cs +++ b/OpenSim/Region/Capabilities/LLSDUploadReply.cs | |||
@@ -28,15 +28,20 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Text; | 30 | using System.Text; |
31 | using OpenSim.Framework.Types; | ||
32 | 31 | ||
33 | using libsecondlife; | 32 | using libsecondlife; |
34 | namespace OpenSim.Framework.Interfaces | 33 | namespace OpenSim.Region.Capabilities |
35 | { | 34 | { |
36 | public interface IScriptAPI | 35 | [LLSDType("MAP")] |
36 | public class LLSDUploadReply | ||
37 | { | 37 | { |
38 | LLVector3 GetEntityPosition(uint localID); | 38 | public string new_asset = ""; |
39 | void SetEntityPosition(uint localID, float x, float y, float z); | 39 | public LLUUID new_inventory_item = LLUUID.Zero; |
40 | uint GetRandomAvatarID(); | 40 | public string state = ""; |
41 | |||
42 | public LLSDUploadReply() | ||
43 | { | ||
44 | |||
45 | } | ||
41 | } | 46 | } |
42 | } | 47 | } |