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

Remove useless clock assignment

This commit is contained in:
EVAST9919 2017-09-21 22:58:49 +03:00
parent 22ab2c5e5d
commit 5383e33f3d

View File

@ -5,7 +5,6 @@ using OpenTK;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Timing;
using osu.Game.Beatmaps.Timing;
using System.Collections.Generic;
@ -22,15 +21,6 @@ namespace osu.Game.Screens.Play.BreaksOverlay
public List<BreakPeriod> Breaks;
public override IFrameBasedClock Clock
{
set
{
base.Clock = remainingTimeCounter.Clock = value;
}
get { return base.Clock; }
}
private readonly bool letterboxing;
private readonly LetterboxOverlay letterboxOverlay;
private readonly Container remainingTimeBox;