1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 22:22:55 +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.Game.Modes.Objects.Drawables;
using osu.Game.Modes.Taiko.Judgements;
using osu.Game.Modes.Taiko.Objects.Drawable.Pieces;
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);
private Container innerLayer;
private Container backingGlowContainer;
private Container innerCircleContainer;
private Box innerBackground;
private Triangles triangles;
private readonly Container innerLayer;
private readonly Container backingGlowContainer;
private readonly Container innerCircleContainer;
private readonly Box innerBackground;
private readonly Triangles triangles;
protected CirclePiece()
{