diff options
author | Melanie | 2010-01-02 17:42:41 +0000 |
---|---|---|
committer | Melanie | 2010-01-02 17:42:41 +0000 |
commit | c5149fe229d1c8ab2cb1d50e906d2064e92ec8b5 (patch) | |
tree | a7ba56e055fd7bb8d1aab0ceb888c1a21126e279 /OpenSim | |
parent | * Forgotten ILibraryService from yesterday (diff) | |
download | opensim-SC_OLD-c5149fe229d1c8ab2cb1d50e906d2064e92ec8b5.zip opensim-SC_OLD-c5149fe229d1c8ab2cb1d50e906d2064e92ec8b5.tar.gz opensim-SC_OLD-c5149fe229d1c8ab2cb1d50e906d2064e92ec8b5.tar.bz2 opensim-SC_OLD-c5149fe229d1c8ab2cb1d50e906d2064e92ec8b5.tar.xz |
Minor interface changes
Diffstat (limited to '')
-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 | } |