Initial layout and animation

This commit is contained in:
DrabWeb
2017-06-01 04:45:46 -03:00
parent 2c438e6a8e
commit 212b2c1142
7 changed files with 403 additions and 1 deletions

11
osu.Game/Users/Medal.cs Normal file
View File

@ -0,0 +1,11 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Users
{
public class Medal
{
public string Name { get; set; }
public string Description { get; set; }
}
}