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

fix(SegmentedGraph): make ctor public

This commit is contained in:
tsrk 2023-01-11 14:02:18 +01:00
parent 42ff8c75fa
commit e128b9ee5c
No known key found for this signature in database
GPG Key ID: EBD46BB3049B56D6

View File

@ -26,7 +26,7 @@ namespace osu.Game.Graphics.UserInterface
private readonly int tierCount;
protected SegmentedGraph(int tierCount)
public SegmentedGraph(int tierCount)
{
this.tierCount = tierCount;
TierColours = new Colour4[tierCount];