public override bool OnPressed(RushAction action) { if (!action.IsLaneAction()) { return(false); } if (!LaneMatchesAction(action) || AllJudged) { return(false); } if (!CheckHittable(this)) { return(false); } return(UpdateResult(true)); }
public override bool OnPressed(RushAction action) => action.IsLaneAction() && UpdateResult(true);