License headers + general fixes.

This commit is contained in:
smoogipooo
2017-03-28 10:51:22 +09:00
parent 621bcaed59
commit 3f1e8ddcd1
6 changed files with 16 additions and 14 deletions

View File

@ -1,4 +1,7 @@
using System.Collections.Generic;
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
using OpenTK.Input;
using osu.Game.Modes.Taiko.Objects.Drawable.Pieces;
@ -6,7 +9,7 @@ namespace osu.Game.Modes.Taiko.Objects.Drawable
{
public class DrawableCentreHit : DrawableHit
{
protected override List<Key> HitKeys { get; } = new List<Key>(new Key[] { Key.F, Key.J });
protected override List<Key> HitKeys { get; } = new List<Key>(new[] { Key.F, Key.J });
public DrawableCentreHit(Hit hit)
: base(hit)