1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:07:23 +08:00

Remove LastFrameTime

This commit is contained in:
smoogipoo 2021-04-15 16:45:59 +09:00
parent 6fc7488a67
commit 33ad7850cb
2 changed files with 0 additions and 6 deletions

View File

@ -167,10 +167,6 @@ namespace osu.Game.Tests.OnlinePlay
public readonly Bindable<bool> WaitingOnFrames = new Bindable<bool>(true);
IBindable<bool> IMultiplayerSlaveClock.WaitingOnFrames => WaitingOnFrames;
public double LastFrameTime => 0;
double IMultiplayerSlaveClock.LastFrameTime => LastFrameTime;
public bool IsCatchingUp { get; set; }
public readonly int Id;

View File

@ -10,8 +10,6 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Spectate
{
IBindable<bool> WaitingOnFrames { get; }
double LastFrameTime { get; }
bool IsCatchingUp { get; set; }
}
}