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

Use lambda expression.

This commit is contained in:
smoogipooo 2017-03-26 00:01:00 +09:00
parent 989a6ab02b
commit bcaf2f9758

View File

@ -58,7 +58,7 @@ namespace osu.Game.Modes.Taiko.Objects.Drawable
UpdateScrollPosition(Time.Current);
}
protected virtual bool HandleKeyPress(Key key) { return false; }
protected virtual bool HandleKeyPress(Key key) => false;
protected override bool OnKeyDown(InputState state, KeyDownEventArgs args)
{