diff options
Diffstat (limited to 'OpenSim/Tests/Common/Mock')
-rw-r--r-- | OpenSim/Tests/Common/Mock/TestClient.cs | 28 |
1 files changed, 7 insertions, 21 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs index 5c838c5..0f642b9 100644 --- a/OpenSim/Tests/Common/Mock/TestClient.cs +++ b/OpenSim/Tests/Common/Mock/TestClient.cs | |||
@@ -592,13 +592,11 @@ namespace OpenSim.Tests.Common.Mock | |||
592 | { | 592 | { |
593 | } | 593 | } |
594 | 594 | ||
595 | public virtual void SendAvatarData(ulong regionHandle, string firstName, string lastName, string grouptitle, UUID avatarID, | 595 | public virtual void SendAvatarData(SendAvatarData data) |
596 | uint avatarLocalID, Vector3 Pos, byte[] textureEntry, uint parentID, Quaternion rotation) | ||
597 | { | 596 | { |
598 | } | 597 | } |
599 | 598 | ||
600 | public virtual void SendAvatarTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, | 599 | public virtual void SendAvatarTerseUpdate(SendAvatarTerseData data) |
601 | Vector3 position, Vector3 velocity, Quaternion rotation, UUID agentid) | ||
602 | { | 600 | { |
603 | } | 601 | } |
604 | 602 | ||
@@ -614,27 +612,15 @@ namespace OpenSim.Tests.Common.Mock | |||
614 | { | 612 | { |
615 | } | 613 | } |
616 | 614 | ||
617 | public virtual void SendPrimitiveToClient(ulong regionHandle, ushort timeDilation, uint localID, | 615 | public virtual void SendPrimitiveToClient(SendPrimitiveData data) |
618 | PrimitiveBaseShape primShape, Vector3 pos, Vector3 vel, | ||
619 | Vector3 acc, Quaternion rotation, Vector3 rvel, uint flags, | ||
620 | UUID objectID, UUID ownerID, string text, byte[] color, | ||
621 | uint parentID, | ||
622 | byte[] particleSystem, byte clickAction, byte material) | ||
623 | { | 616 | { |
624 | } | 617 | } |
625 | public virtual void SendPrimitiveToClient(ulong regionHandle, ushort timeDilation, uint localID, | 618 | |
626 | PrimitiveBaseShape primShape, Vector3 pos, Vector3 vel, | 619 | public virtual void SendPrimTerseUpdate(SendPrimitiveTerseData data) |
627 | Vector3 acc, Quaternion rotation, Vector3 rvel, uint flags, | ||
628 | UUID objectID, UUID ownerID, string text, byte[] color, | ||
629 | uint parentID, | ||
630 | byte[] particleSystem, byte clickAction, byte material, byte[] textureanimation, | ||
631 | bool attachment, uint AttachmentPoint, UUID AssetId, UUID SoundId, double SoundVolume, byte SoundFlags, double SoundRadius) | ||
632 | { | 620 | { |
633 | } | 621 | } |
634 | public virtual void SendPrimTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, | 622 | |
635 | Vector3 position, Quaternion rotation, Vector3 velocity, | 623 | public virtual void ReprioritizeUpdates(StateUpdateTypes type, UpdatePriorityHandler handler) |
636 | Vector3 rotationalvelocity, byte state, UUID AssetId, | ||
637 | UUID ownerID, int attachPoint) | ||
638 | { | 624 | { |
639 | } | 625 | } |
640 | 626 | ||