Team -> Region, +IHasDrawableRepresentation, +Badge(placeholder for now), +Region to User, LeaderboardScoreDisplay -> LeaderboardScore

This commit is contained in:
DrabWeb
2017-03-13 09:33:25 -03:00
parent 5719c6656a
commit 9912f5f9e1
16 changed files with 183 additions and 98 deletions

View File

@ -1,16 +1,15 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
namespace osu.Game.Users
{
public class User
{
public int Id;
public string Username;
/// <summary>
/// Two-letter flag acronym (ISO 3166 standard)
/// </summary>
public string FlagName;
public Region Region;
public IEnumerable<Badge> Badges;
}
}