Add license + general fixes.

This commit is contained in:
smoogipooo
2017-03-21 16:40:37 +09:00
parent 1ac9898a36
commit 4e7a44cd44
3 changed files with 10 additions and 4 deletions

View File

@ -1,4 +1,7 @@
using osu.Framework.Graphics; // Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Transforms; using osu.Framework.Graphics.Transforms;
using osu.Game.Graphics.Sprites; using osu.Game.Graphics.Sprites;

View File

@ -1,4 +1,7 @@
using OpenTK; // Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK;
using OpenTK.Graphics; using OpenTK.Graphics;
using osu.Framework.Allocation; using osu.Framework.Allocation;
using osu.Framework.Graphics; using osu.Framework.Graphics;
@ -45,8 +48,6 @@ namespace osu.Game.Modes.Taiko.UI
{ {
switch (ScoreResult) switch (ScoreResult)
{ {
default:
break;
case TaikoScoreResult.Good: case TaikoScoreResult.Good:
innerFill.Colour = colours.Green; innerFill.Colour = colours.Green;
break; break;

View File

@ -46,12 +46,14 @@ namespace osu.Game.Modes.Taiko.UI
protected override Container<Drawable> Content => hitObjectContainer; protected override Container<Drawable> Content => hitObjectContainer;
// ReSharper disable once NotAccessedField.Local
private HitTarget hitTarget; private HitTarget hitTarget;
private Container<RingExplosion> ringExplosionContainer; private Container<RingExplosion> ringExplosionContainer;
//private Container<DrawableBarLine> barLineContainer; //private Container<DrawableBarLine> barLineContainer;
private Container<JudgementText> judgementContainer; private Container<JudgementText> judgementContainer;
private Container hitObjectContainer; private Container hitObjectContainer;
// ReSharper disable once NotAccessedField.Local
private Container topLevelHitContainer; private Container topLevelHitContainer;
private Container leftBackgroundContainer; private Container leftBackgroundContainer;
private Container rightBackgroundContainer; private Container rightBackgroundContainer;