Rename User to APIUser and move to correct namespace

This commit is contained in:
Dean Herbert
2021-11-04 18:02:44 +09:00
parent 25b0bccfd5
commit b9983add15
195 changed files with 991 additions and 947 deletions

View File

@ -4,16 +4,17 @@
using System;
using Newtonsoft.Json;
using osu.Framework.Localisation;
using osu.Game.Online.API.Requests.Responses;
using osu.Game.Scoring;
using osu.Game.Utils;
using static osu.Game.Users.User;
using static osu.Game.Online.API.Requests.Responses.APIUser;
namespace osu.Game.Users
{
public class UserStatistics
{
[JsonProperty]
public User User;
public APIUser User;
[JsonProperty(@"level")]
public LevelInfo Level;