Change IScoreInfo.User to an interface type

This commit is contained in:
Dean Herbert
2021-11-11 23:18:31 +09:00
parent bff02bedbf
commit c6d0d6451d
3 changed files with 10 additions and 2 deletions

View File

@ -4,14 +4,14 @@
using System;
using osu.Game.Beatmaps;
using osu.Game.Database;
using osu.Game.Online.API.Requests.Responses;
using osu.Game.Rulesets;
using osu.Game.Users;
namespace osu.Game.Scoring
{
public interface IScoreInfo : IHasOnlineID<long>, IHasNamedFiles
{
APIUser User { get; }
IUser User { get; }
long TotalScore { get; }