aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests
diff options
context:
space:
mode:
authorUbitUmarov2015-10-26 21:56:02 +0000
committerUbitUmarov2015-10-26 21:56:02 +0000
commit6821ace3c6b6eb5a38e49f38ba3fd492eda15843 (patch)
treeb3bdb49572f0687e2dd09b06651f346080c93ef1 /OpenSim/Tests
parent try fix IRC connector issue on mantis 7731 but with code a bit diferent from... (diff)
downloadopensim-SC_OLD-6821ace3c6b6eb5a38e49f38ba3fd492eda15843.zip
opensim-SC_OLD-6821ace3c6b6eb5a38e49f38ba3fd492eda15843.tar.gz
opensim-SC_OLD-6821ace3c6b6eb5a38e49f38ba3fd492eda15843.tar.bz2
opensim-SC_OLD-6821ace3c6b6eb5a38e49f38ba3fd492eda15843.tar.xz
add basic SendFindAgent() to lludp. Future use may require a list of pairs (X,Y). For now one pair is good enough.
Diffstat (limited to 'OpenSim/Tests')
-rw-r--r--OpenSim/Tests/Common/Mock/TestClient.cs9
1 files changed, 7 insertions, 2 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs
index 76ee5c2..ff7ba00 100644
--- a/OpenSim/Tests/Common/Mock/TestClient.cs
+++ b/OpenSim/Tests/Common/Mock/TestClient.cs
@@ -943,8 +943,13 @@ namespace OpenSim.Tests.Common
943 ReceivedOnlineNotifications.AddRange(agentIDs); 943 ReceivedOnlineNotifications.AddRange(agentIDs);
944 } 944 }
945 945
946 public void SendSitResponse(UUID TargetID, Vector3 OffsetPos, Quaternion SitOrientation, bool autopilot, 946 public void SendFindAgent(UUID HunterID, UUID PreyID, double GlobalX, double GlobalY)
947 Vector3 CameraAtOffset, Vector3 CameraEyeOffset, bool ForceMouseLook) 947 {
948 }
949
950 public void SendSitResponse(UUID TargetID, Vector3 OffsetPos,
951 Quaternion SitOrientation, bool autopilot,
952 Vector3 CameraAtOffset, Vector3 CameraEyeOffset, bool ForceMouseLook)
948 { 953 {
949 } 954 }
950 955