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

Make OnKeyDown non-sealed.

This commit is contained in:
smoogipooo 2017-03-17 17:38:24 +09:00
parent 6a1c6f962e
commit 863d4959af

View File

@ -65,7 +65,7 @@ namespace osu.Game.Modes.Taiko.Objects.Drawable
return UpdateJudgement(true); return UpdateJudgement(true);
} }
protected sealed override bool OnKeyDown(InputState state, KeyDownEventArgs args) protected override bool OnKeyDown(InputState state, KeyDownEventArgs args)
{ {
// Make sure we don't handle held-down keys // Make sure we don't handle held-down keys
if (args.Repeat) if (args.Repeat)