Hook everything up

This commit is contained in:
Dean Herbert
2017-08-20 22:21:16 +09:00
parent ec08b2940d
commit a18b2bd5f0
7 changed files with 40 additions and 19 deletions

View File

@ -1,7 +1,6 @@
// 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.ComponentModel;
using osu.Framework.Graphics;
using osu.Framework.Input.Bindings;
using osu.Game.Rulesets.Objects.Drawables;
@ -45,16 +44,4 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
public virtual bool OnReleased(TaikoAction action) => false;
}
public enum TaikoAction
{
[Description("Left (Rim)")]
LeftRim,
[Description("Left (Centre)")]
LeftCentre,
[Description("Right (Centre)")]
RightCentre,
[Description("Right (Rim)")]
RightRim
}
}