1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 20:13:22 +08:00

Update test

This commit is contained in:
timiimit 2023-05-13 01:35:48 +02:00
parent 04f7def798
commit d39d552660

View File

@ -63,10 +63,12 @@ namespace osu.Game.Tests.Visual.Gameplay
{
public int CreationCount { get; private set; }
protected override void RecreateGraph()
protected override void UpdateGraph()
{
base.RecreateGraph();
CreationCount++;
base.UpdateGraph();
if (base.ColumnCount > 0)
CreationCount++;
}
}
}