1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-06 04:13:11 +08:00

Fix post-merge errors.

This commit is contained in:
smoogipooo 2017-03-24 15:14:49 +09:00
parent 20e80a758a
commit bb4b6b783c
2 changed files with 6 additions and 5 deletions

View File

@ -4,6 +4,7 @@
using osu.Framework.Graphics; using osu.Framework.Graphics;
using osu.Game.Modes.Objects.Drawables; using osu.Game.Modes.Objects.Drawables;
using osu.Game.Modes.Taiko.Judgements; using osu.Game.Modes.Taiko.Judgements;
using osu.Game.Modes.Taiko.Objects.Drawable.Pieces;
namespace osu.Game.Modes.Taiko.Objects.Drawable namespace osu.Game.Modes.Taiko.Objects.Drawable
{ {

View File

@ -46,11 +46,11 @@ namespace osu.Game.Modes.Taiko.Objects.Drawable.Pieces
public override Vector2 Size => new Vector2(base.Size.X, 128); public override Vector2 Size => new Vector2(base.Size.X, 128);
private Container innerLayer; private readonly Container innerLayer;
private Container backingGlowContainer; private readonly Container backingGlowContainer;
private Container innerCircleContainer; private readonly Container innerCircleContainer;
private Box innerBackground; private readonly Box innerBackground;
private Triangles triangles; private readonly Triangles triangles;
protected CirclePiece() protected CirclePiece()
{ {