1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 16:27:43 +08:00

Change property type

Nobody is supposed to be using `ColourInfo` directly, really.
This commit is contained in:
Bartłomiej Dach 2024-10-21 12:47:41 +02:00
parent 59e9ed7bac
commit a90ad63493
No known key found for this signature in database

View File

@ -236,7 +236,7 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
set => text.Text = value; set => text.Text = value;
} }
public ColourInfo TextColour public Colour4 TextColour
{ {
set => text.Colour = value; set => text.Colour = value;
} }