aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common
diff options
context:
space:
mode:
authorMW2007-05-25 19:09:19 +0000
committerMW2007-05-25 19:09:19 +0000
commit64741b55a6d68eb2853ca2f33047e6a2f459b513 (patch)
tree01ebe1336f9e2e0391bea8baf8618bd81f69ec12 /Common
parentPossible my last ever OpenSim/OGS contribution (if I continue to feel like th... (diff)
downloadopensim-SC_OLD-64741b55a6d68eb2853ca2f33047e6a2f459b513.zip
opensim-SC_OLD-64741b55a6d68eb2853ca2f33047e6a2f459b513.tar.gz
opensim-SC_OLD-64741b55a6d68eb2853ca2f33047e6a2f459b513.tar.bz2
opensim-SC_OLD-64741b55a6d68eb2853ca2f33047e6a2f459b513.tar.xz
First part of border crossing fix.
Diffstat (limited to 'Common')
-rw-r--r--Common/OpenSim.Framework/Interfaces/IClientAPI.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/Common/OpenSim.Framework/Interfaces/IClientAPI.cs b/Common/OpenSim.Framework/Interfaces/IClientAPI.cs
index a991fb6..9f7b619 100644
--- a/Common/OpenSim.Framework/Interfaces/IClientAPI.cs
+++ b/Common/OpenSim.Framework/Interfaces/IClientAPI.cs
@@ -24,6 +24,11 @@ namespace OpenSim.Framework.Interfaces
24 event StartAnim OnStartAnim; 24 event StartAnim OnStartAnim;
25 event LinkObjects OnLinkObjects; 25 event LinkObjects OnLinkObjects;
26 26
27 LLVector3 StartPos
28 {
29 get;
30 set;
31 }
27 void SendAppearance(AvatarWearable[] wearables); 32 void SendAppearance(AvatarWearable[] wearables);
28 void SendChatMessage(byte[] message, byte type, LLVector3 fromPos, string fromName, LLUUID fromAgentID); 33 void SendChatMessage(byte[] message, byte type, LLVector3 fromPos, string fromName, LLUUID fromAgentID);
29 } 34 }