// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Threading.Tasks; using osu.Game.Users; namespace osu.Game.Online.Metadata { /// /// Interface for metadata-related remote procedure calls to be executed on the client side. /// public interface IMetadataClient : IStatefulUserHubClient { /// /// Delivers the set of requested to the client. /// Task BeatmapSetsUpdated(BeatmapUpdates updates); /// /// Delivers an update of the of the user with the supplied . /// Task UserPresenceUpdated(int userId, UserPresence? status); } }