From c5149fe229d1c8ab2cb1d50e906d2064e92ec8b5 Mon Sep 17 00:00:00 2001 From: Melanie Date: Sat, 2 Jan 2010 17:42:41 +0000 Subject: Minor interface changes --- OpenSim/Services/Interfaces/IAvatarService.cs | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/OpenSim/Services/Interfaces/IAvatarService.cs b/OpenSim/Services/Interfaces/IAvatarService.cs index 7324c74..f87fcd8 100644 --- a/OpenSim/Services/Interfaces/IAvatarService.cs +++ b/OpenSim/Services/Interfaces/IAvatarService.cs @@ -65,9 +65,8 @@ namespace OpenSim.Services.Interfaces /// /// /// - bool SetAttachment(UUID userID, AttachmentData attach); - bool SetAttachments(UUID userID, List attachs); - bool Dettach(UUID userID, UUID id); + bool SetAttachments(UUID userID, AttachmentData[] attachs); + bool Detach(UUID userID, UUID id); } /// @@ -83,12 +82,10 @@ namespace OpenSim.Services.Interfaces // be processed by a module instead of being processed in // the Scenes core code. - AttachmentData GetAttachment(int attachPoint); - List GetAttachments(); + AttachmentData[] GetAttachments(int[] attachPoints); int GetAttachmentPoint(UUID id); - bool SetAttachment(AttachmentData attach); - bool SetAttachments(List attachs); - bool Dettach(UUID id); + bool SetAttachments(AttachmentData[] attachs); + bool Detach(UUID id); } } -- cgit v1.1