Add better ToString output from SkinInfo

This commit is contained in:
Dean Herbert
2018-03-14 19:09:30 +09:00
parent 397b06283a
commit ec851648da
2 changed files with 3 additions and 1 deletions

View File

@ -24,5 +24,7 @@ namespace osu.Game.Skinning
public static SkinInfo Default { get; } = new SkinInfo { Name = "osu!lazer", Creator = "team osu!" };
public bool Equals(SkinInfo other) => other != null && ID == other.ID;
public override string ToString() => $"\"{Name}\" by {Creator}";
}
}