1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-07 18:07:28 +08:00

Fix post-merge errors.

This commit is contained in:
smoogipooo 2017-03-17 18:59:21 +09:00
parent 91775b33e3
commit a2d07acb4b

View File

@ -10,7 +10,7 @@ using System;
namespace osu.Game.Modes.Taiko.Objects.Drawable
{
public class DrawableBash : DrawableTaikoHitObject
public class DrawableBash : DrawableTaikoHitObject<Bash>
{
/// <summary>
/// A list of keys which this HitObject will accept. These are the standard Taiko keys for now.
@ -23,8 +23,8 @@ namespace osu.Game.Modes.Taiko.Objects.Drawable
/// </summary>
private int userHits;
public DrawableBash(TaikoHitObject hitObject)
: base(hitObject)
public DrawableBash(Bash bash)
: base(bash)
{
}