diff options
-rw-r--r-- | OpenSim/Services/Interfaces/IAvatarService.cs | 13 |
1 files 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 | |||
65 | /// <param name="userID"></param> | 65 | /// <param name="userID"></param> |
66 | /// <param name="attach"></param> | 66 | /// <param name="attach"></param> |
67 | /// <returns></returns> | 67 | /// <returns></returns> |
68 | bool SetAttachment(UUID userID, AttachmentData attach); | 68 | bool SetAttachments(UUID userID, AttachmentData[] attachs); |
69 | bool SetAttachments(UUID userID, List<AttachmentData> attachs); | 69 | bool Detach(UUID userID, UUID id); |
70 | bool Dettach(UUID userID, UUID id); | ||
71 | } | 70 | } |
72 | 71 | ||
73 | /// <summary> | 72 | /// <summary> |
@@ -83,12 +82,10 @@ namespace OpenSim.Services.Interfaces | |||
83 | // be processed by a module instead of being processed in | 82 | // be processed by a module instead of being processed in |
84 | // the Scenes core code. | 83 | // the Scenes core code. |
85 | 84 | ||
86 | AttachmentData GetAttachment(int attachPoint); | 85 | AttachmentData[] GetAttachments(int[] attachPoints); |
87 | List<AttachmentData> GetAttachments(); | ||
88 | int GetAttachmentPoint(UUID id); | 86 | int GetAttachmentPoint(UUID id); |
89 | 87 | ||
90 | bool SetAttachment(AttachmentData attach); | 88 | bool SetAttachments(AttachmentData[] attachs); |
91 | bool SetAttachments(List<AttachmentData> attachs); | 89 | bool Detach(UUID id); |
92 | bool Dettach(UUID id); | ||
93 | } | 90 | } |
94 | } | 91 | } |