Medal sprite, make MedalOverlay auto-show when loaded.

This commit is contained in:
DrabWeb
2017-06-24 01:19:44 -03:00
parent c71f34c507
commit 0133f9c086
4 changed files with 22 additions and 11 deletions

View File

@ -6,6 +6,8 @@ namespace osu.Game.Users
public class Medal
{
public string Name { get; set; }
public string InternalName { get; set; }
public string ImageUrl => $@"https://s.ppy.sh/images/medals-client/{InternalName}@2x.png";
public string Description { get; set; }
}
}