1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-23 01:37:31 +08:00

Simplify interface implementations

This commit is contained in:
Dean Herbert 2022-08-24 15:38:25 +09:00
parent 2f5be6efca
commit d05d8aeb22

View File

@ -68,12 +68,10 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Spectate
{
}
public double Rate => IsCatchingUp ? catchup_rate : 1;
double IAdjustableClock.Rate
public double Rate
{
get => Rate;
set => throw new NotSupportedException();
get => IsCatchingUp ? catchup_rate : 1;
set => throw new NotImplementedException();
}
public void ProcessFrame()