diff options
Diffstat (limited to 'OpenSim/Tests')
-rw-r--r-- | OpenSim/Tests/Common/Mock/TestClient.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs index a4247e3..09ff531 100644 --- a/OpenSim/Tests/Common/Mock/TestClient.cs +++ b/OpenSim/Tests/Common/Mock/TestClient.cs | |||
@@ -63,6 +63,7 @@ namespace OpenSim.Tests.Common.Mock | |||
63 | public event Action<ulong, IPEndPoint> OnTestClientInformClientOfNeighbour; | 63 | public event Action<ulong, IPEndPoint> OnTestClientInformClientOfNeighbour; |
64 | public event TestClientOnSendRegionTeleportDelegate OnTestClientSendRegionTeleport; | 64 | public event TestClientOnSendRegionTeleportDelegate OnTestClientSendRegionTeleport; |
65 | public event Action<GridInstantMessage> OnReceivedInstantMessage; | 65 | public event Action<GridInstantMessage> OnReceivedInstantMessage; |
66 | public event Action<UUID> OnReceivedSendRebakeAvatarTextures; | ||
66 | 67 | ||
67 | public delegate void TestClientOnSendRegionTeleportDelegate( | 68 | public delegate void TestClientOnSendRegionTeleportDelegate( |
68 | ulong regionHandle, byte simAccess, IPEndPoint regionExternalEndPoint, | 69 | ulong regionHandle, byte simAccess, IPEndPoint regionExternalEndPoint, |
@@ -1227,6 +1228,8 @@ namespace OpenSim.Tests.Common.Mock | |||
1227 | 1228 | ||
1228 | public void SendRebakeAvatarTextures(UUID textureID) | 1229 | public void SendRebakeAvatarTextures(UUID textureID) |
1229 | { | 1230 | { |
1231 | if (OnReceivedSendRebakeAvatarTextures != null) | ||
1232 | OnReceivedSendRebakeAvatarTextures(textureID); | ||
1230 | } | 1233 | } |
1231 | 1234 | ||
1232 | public void SendAvatarInterestsReply(UUID avatarID, uint wantMask, string wantText, uint skillsMask, string skillsText, string languages) | 1235 | public void SendAvatarInterestsReply(UUID avatarID, uint wantMask, string wantText, uint skillsMask, string skillsText, string languages) |