Expose avatars publicly

This commit is contained in:
Oliver Booth 2022-12-04 13:22:03 +00:00
parent 3b4c705d7d
commit ee7d527ed8
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634
1 changed files with 9 additions and 0 deletions

View File

@ -59,6 +59,15 @@ public sealed partial class VirtualParadiseClient : IDisposable
Dispose();
}
/// <summary>
/// Gets a read-only view of the cached avatars.
/// </summary>
/// <value>The cached avatars.</value>
public IReadOnlyList<VirtualParadiseAvatar> Avatars
{
get => _avatars.Values.ToArray();
}
/// <summary>
/// Gets the current avatar associated with this client.
/// </summary>