in scripts/Wall.cs [11:21]
public void OnAreaEntered(Area2D area)
{
if (area is Ball ball)
{
ball.Reset(BallResetDirection);
if (Scorer is IHasScore scoring)
{
scoring.IncrementScore();
}
}
}