mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 06:36:31 +09:00
item -> model
This commit is contained in:
@ -25,7 +25,7 @@ namespace osu.Game.Overlays.Profile.Sections.Historical
|
||||
protected override APIRequest<List<APIUserMostPlayedBeatmap>> CreateRequest() =>
|
||||
new GetUserMostPlayedBeatmapsRequest(User.Value.Id, VisiblePages++, ItemsPerPage);
|
||||
|
||||
protected override Drawable CreateDrawableItem(APIUserMostPlayedBeatmap item) =>
|
||||
new DrawableMostPlayedBeatmap(item.GetBeatmapInfo(Rulesets), item.PlayCount);
|
||||
protected override Drawable CreateDrawableItem(APIUserMostPlayedBeatmap model) =>
|
||||
new DrawableMostPlayedBeatmap(model.GetBeatmapInfo(Rulesets), model.PlayCount);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user