diff options
Diffstat (limited to 'OpenSim/Framework/IUserData.cs')
-rw-r--r-- | OpenSim/Framework/IUserData.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Framework/IUserData.cs b/OpenSim/Framework/IUserData.cs index 4089253..07159cc 100644 --- a/OpenSim/Framework/IUserData.cs +++ b/OpenSim/Framework/IUserData.cs | |||
@@ -136,6 +136,17 @@ namespace OpenSim.Framework | |||
136 | List<FriendListItem> GetUserFriendList(UUID friendlistowner); | 136 | List<FriendListItem> GetUserFriendList(UUID friendlistowner); |
137 | 137 | ||
138 | /// <summary> | 138 | /// <summary> |
139 | /// Returns a list of <see cref="FriendRegionInfo/>s for the specified UUIDs. | ||
140 | /// </summary> | ||
141 | /// <param name="uuids"> | ||
142 | /// A <see cref="List"/> of <see cref="UUID/>s to fetch info for | ||
143 | /// </param> | ||
144 | /// <returns> | ||
145 | /// A <see cref="Dictionary"/>, mapping the <see cref="UUID"/>s to <see cref="FriendRegionInfo"/>s. | ||
146 | /// </returns> | ||
147 | Dictionary<UUID, FriendRegionInfo> GetFriendRegionInfos(List<UUID> uuids); | ||
148 | |||
149 | /// <summary> | ||
139 | /// Attempts to move currency units between accounts (NOT RELIABLE / TRUSTWORTHY. DONT TRY RUN YOUR OWN CURRENCY EXCHANGE WITH REAL VALUES) | 150 | /// Attempts to move currency units between accounts (NOT RELIABLE / TRUSTWORTHY. DONT TRY RUN YOUR OWN CURRENCY EXCHANGE WITH REAL VALUES) |
140 | /// </summary> | 151 | /// </summary> |
141 | /// <param name="from">The account to transfer from</param> | 152 | /// <param name="from">The account to transfer from</param> |