Merge pull request #16142 from peppy/fix-random-skin-string

Fix "Random Skin" text not showing up correctly
This commit is contained in:
Dan Balasescu
2021-12-18 16:59:41 +09:00
committed by GitHub

View File

@ -26,6 +26,8 @@ namespace osu.Game.Database
public bool Equals(ILive<T>? other) => ID == other?.ID;
public override string ToString() => Value.ToString();
public Guid ID => Value.ID;
public void PerformRead(Action<T> perform) => perform(Value);