1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-21 03:43:21 +08:00

Implement interface

This commit is contained in:
smoogipoo 2018-11-14 15:33:09 +09:00
parent 2ae139d260
commit 7274908059

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();
}