1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 12:33:01 +08:00

Fix "Random Skin" text not showing up correctly

This commit is contained in:
Dean Herbert 2021-12-18 16:26:15 +09:00
parent ed5d7046f3
commit 04cfae9bde

View File

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