1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 08:07:24 +08:00

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
commit a3b81094ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);