aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common/Mock/TestClient.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Tests/Common/Mock/TestClient.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs
index 83bd9d9..b5d6f6b 100644
--- a/OpenSim/Tests/Common/Mock/TestClient.cs
+++ b/OpenSim/Tests/Common/Mock/TestClient.cs
@@ -93,7 +93,6 @@ namespace OpenSim.Tests.Common.Mock
93 public event ViewerEffectEventHandler OnViewerEffect; 93 public event ViewerEffectEventHandler OnViewerEffect;
94 94
95 public event FetchInventory OnAgentDataUpdateRequest; 95 public event FetchInventory OnAgentDataUpdateRequest;
96 public event FetchInventory OnUserInfoRequest;
97 public event TeleportLocationRequest OnSetStartLocationRequest; 96 public event TeleportLocationRequest OnSetStartLocationRequest;
98 97
99 public event UpdateShape OnUpdatePrimShape; 98 public event UpdateShape OnUpdatePrimShape;
@@ -248,6 +247,9 @@ namespace OpenSim.Tests.Common.Mock
248 247
249 public event ParcelDwellRequest OnParcelDwellRequest; 248 public event ParcelDwellRequest OnParcelDwellRequest;
250 249
250 public event UserInfoRequest OnUserInfoRequest;
251 public event UpdateUserInfo OnUpdateUserInfo;
252
251#pragma warning restore 67 253#pragma warning restore 67
252 254
253 /// <value> 255 /// <value>
@@ -991,5 +993,9 @@ namespace OpenSim.Tests.Common.Mock
991 public void SendParcelDwellReply(int localID, UUID parcelID, float dwell) 993 public void SendParcelDwellReply(int localID, UUID parcelID, float dwell)
992 { 994 {
993 } 995 }
996
997 public void SendUserInfoReply(bool imViaEmail, bool visible, string email)
998 {
999 }
994 } 1000 }
995} 1001}