mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
Minor interface changes
This commit is contained in:
@@ -65,9 +65,8 @@ namespace OpenSim.Services.Interfaces
|
||||
/// <param name="userID"></param>
|
||||
/// <param name="attach"></param>
|
||||
/// <returns></returns>
|
||||
bool SetAttachment(UUID userID, AttachmentData attach);
|
||||
bool SetAttachments(UUID userID, List<AttachmentData> attachs);
|
||||
bool Dettach(UUID userID, UUID id);
|
||||
bool SetAttachments(UUID userID, AttachmentData[] attachs);
|
||||
bool Detach(UUID userID, UUID id);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -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<AttachmentData> GetAttachments();
|
||||
AttachmentData[] GetAttachments(int[] attachPoints);
|
||||
int GetAttachmentPoint(UUID id);
|
||||
|
||||
bool SetAttachment(AttachmentData attach);
|
||||
bool SetAttachments(List<AttachmentData> attachs);
|
||||
bool Dettach(UUID id);
|
||||
bool SetAttachments(AttachmentData[] attachs);
|
||||
bool Detach(UUID id);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user