Minor interface changes

slimupdates
Melanie 2010-01-02 17:42:41 +00:00
parent dbb16bf2db
commit c5149fe229
1 changed files with 5 additions and 8 deletions

View File

@ -65,9 +65,8 @@ namespace OpenSim.Services.Interfaces
/// <param name="userID"></param> /// <param name="userID"></param>
/// <param name="attach"></param> /// <param name="attach"></param>
/// <returns></returns> /// <returns></returns>
bool SetAttachment(UUID userID, AttachmentData attach); bool SetAttachments(UUID userID, AttachmentData[] attachs);
bool SetAttachments(UUID userID, List<AttachmentData> attachs); bool Detach(UUID userID, UUID id);
bool Dettach(UUID userID, UUID id);
} }
/// <summary> /// <summary>
@ -83,12 +82,10 @@ namespace OpenSim.Services.Interfaces
// be processed by a module instead of being processed in // be processed by a module instead of being processed in
// the Scenes core code. // the Scenes core code.
AttachmentData GetAttachment(int attachPoint); AttachmentData[] GetAttachments(int[] attachPoints);
List<AttachmentData> GetAttachments();
int GetAttachmentPoint(UUID id); int GetAttachmentPoint(UUID id);
bool SetAttachment(AttachmentData attach); bool SetAttachments(AttachmentData[] attachs);
bool SetAttachments(List<AttachmentData> attachs); bool Detach(UUID id);
bool Dettach(UUID id);
} }
} }