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

Fix post-merge issue

This commit is contained in:
smoogipoo 2018-11-13 15:44:37 +09:00
parent 2c277545e0
commit 0f755c814c

View File

@ -85,6 +85,9 @@ namespace osu.Game.Tests.Visual
public float PositionAt(double time, double currentTime, double timeRange, float scrollLength)
=> implementation.PositionAt(time, currentTime, timeRange, scrollLength);
public double TimeAt(float position, double currentTime, double timeRange, float scrollLength)
=> implementation.TimeAt(position, currentTime, timeRange, scrollLength);
public void Reset()
=> implementation.Reset();
}