Make beatmap title use unicode

This commit is contained in:
PercyDan54
2021-04-03 12:43:17 +08:00
parent 0c35128ead
commit bd7da9eb39
2 changed files with 5 additions and 2 deletions

View File

@ -19,8 +19,10 @@ namespace osu.Game.Beatmaps
public int ID { get; set; }
public string Title { get; set; }
[JsonProperty("title_unicode")]
public string TitleUnicode { get; set; }
public string Artist { get; set; }
[JsonProperty("artist_unicode")]
public string ArtistUnicode { get; set; }
[JsonIgnore]