diff options
Diffstat (limited to 'OpenSim/Tests/Common/Mock/TestClient.cs')
-rw-r--r-- | OpenSim/Tests/Common/Mock/TestClient.cs | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs index 376465c..fb70904 100644 --- a/OpenSim/Tests/Common/Mock/TestClient.cs +++ b/OpenSim/Tests/Common/Mock/TestClient.cs | |||
@@ -69,7 +69,7 @@ namespace OpenSim.Tests.Common.Mock | |||
69 | public event MoneyTransferRequest OnMoneyTransferRequest; | 69 | public event MoneyTransferRequest OnMoneyTransferRequest; |
70 | public event ParcelBuy OnParcelBuy; | 70 | public event ParcelBuy OnParcelBuy; |
71 | public event Action<IClientAPI> OnConnectionClosed; | 71 | public event Action<IClientAPI> OnConnectionClosed; |
72 | 72 | public event MoveItemsAndLeaveCopy OnMoveItemsAndLeaveCopy; | |
73 | public event ImprovedInstantMessage OnInstantMessage; | 73 | public event ImprovedInstantMessage OnInstantMessage; |
74 | public event ChatMessage OnChatFromClient; | 74 | public event ChatMessage OnChatFromClient; |
75 | public event TextureRequest OnRequestTexture; | 75 | public event TextureRequest OnRequestTexture; |
@@ -86,6 +86,7 @@ namespace OpenSim.Tests.Common.Mock | |||
86 | public event ObjectDrop OnObjectDrop; | 86 | public event ObjectDrop OnObjectDrop; |
87 | public event StartAnim OnStartAnim; | 87 | public event StartAnim OnStartAnim; |
88 | public event StopAnim OnStopAnim; | 88 | public event StopAnim OnStopAnim; |
89 | public event ChangeAnim OnChangeAnim; | ||
89 | public event LinkObjects OnLinkObjects; | 90 | public event LinkObjects OnLinkObjects; |
90 | public event DelinkObjects OnDelinkObjects; | 91 | public event DelinkObjects OnDelinkObjects; |
91 | public event RequestMapBlocks OnRequestMapBlocks; | 92 | public event RequestMapBlocks OnRequestMapBlocks; |
@@ -133,6 +134,7 @@ namespace OpenSim.Tests.Common.Mock | |||
133 | public event GenericCall7 OnObjectMaterial; | 134 | public event GenericCall7 OnObjectMaterial; |
134 | public event UpdatePrimFlags OnUpdatePrimFlags; | 135 | public event UpdatePrimFlags OnUpdatePrimFlags; |
135 | public event UpdatePrimTexture OnUpdatePrimTexture; | 136 | public event UpdatePrimTexture OnUpdatePrimTexture; |
137 | public event ClientChangeObject onClientChangeObject; | ||
136 | public event UpdateVector OnUpdatePrimGroupPosition; | 138 | public event UpdateVector OnUpdatePrimGroupPosition; |
137 | public event UpdateVector OnUpdatePrimSinglePosition; | 139 | public event UpdateVector OnUpdatePrimSinglePosition; |
138 | public event UpdatePrimRotation OnUpdatePrimGroupRotation; | 140 | public event UpdatePrimRotation OnUpdatePrimGroupRotation; |
@@ -274,7 +276,7 @@ namespace OpenSim.Tests.Common.Mock | |||
274 | public event ClassifiedInfoRequest OnClassifiedInfoRequest; | 276 | public event ClassifiedInfoRequest OnClassifiedInfoRequest; |
275 | public event ClassifiedInfoUpdate OnClassifiedInfoUpdate; | 277 | public event ClassifiedInfoUpdate OnClassifiedInfoUpdate; |
276 | public event ClassifiedDelete OnClassifiedDelete; | 278 | public event ClassifiedDelete OnClassifiedDelete; |
277 | public event ClassifiedDelete OnClassifiedGodDelete; | 279 | public event ClassifiedGodDelete OnClassifiedGodDelete; |
278 | 280 | ||
279 | public event EventNotificationAddRequest OnEventNotificationAddRequest; | 281 | public event EventNotificationAddRequest OnEventNotificationAddRequest; |
280 | public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; | 282 | public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; |
@@ -313,6 +315,7 @@ namespace OpenSim.Tests.Common.Mock | |||
313 | public event GroupVoteHistoryRequest OnGroupVoteHistoryRequest; | 315 | public event GroupVoteHistoryRequest OnGroupVoteHistoryRequest; |
314 | public event SimWideDeletesDelegate OnSimWideDeletes; | 316 | public event SimWideDeletesDelegate OnSimWideDeletes; |
315 | public event SendPostcard OnSendPostcard; | 317 | public event SendPostcard OnSendPostcard; |
318 | public event ChangeInventoryItemFlags OnChangeInventoryItemFlags; | ||
316 | public event MuteListEntryUpdate OnUpdateMuteListEntry; | 319 | public event MuteListEntryUpdate OnUpdateMuteListEntry; |
317 | public event MuteListEntryRemove OnRemoveMuteListEntry; | 320 | public event MuteListEntryRemove OnRemoveMuteListEntry; |
318 | public event GodlikeMessage onGodlikeMessage; | 321 | public event GodlikeMessage onGodlikeMessage; |
@@ -932,6 +935,11 @@ namespace OpenSim.Tests.Common.Mock | |||
932 | Close(); | 935 | Close(); |
933 | } | 936 | } |
934 | 937 | ||
938 | public void Close(bool c) | ||
939 | { | ||
940 | Close(); | ||
941 | } | ||
942 | |||
935 | public void Close() | 943 | public void Close() |
936 | { | 944 | { |
937 | // Fire the callback for this connection closing | 945 | // Fire the callback for this connection closing |
@@ -1280,5 +1288,9 @@ namespace OpenSim.Tests.Common.Mock | |||
1280 | public void SendPlacesReply(UUID queryID, UUID transactionID, PlacesReplyData[] data) | 1288 | public void SendPlacesReply(UUID queryID, UUID transactionID, PlacesReplyData[] data) |
1281 | { | 1289 | { |
1282 | } | 1290 | } |
1291 | |||
1292 | public void SendPartPhysicsProprieties(ISceneEntity entity) | ||
1293 | { | ||
1294 | } | ||
1283 | } | 1295 | } |
1284 | } | 1296 | } |