game: add: goal statistic

This commit is contained in:
2024-02-26 17:11:31 +01:00
committed by AdrienLSH
parent d961130de3
commit b9de0f3619
15 changed files with 335 additions and 82 deletions

View File

@ -25,5 +25,7 @@ class GameConfigView(APIView):
"BALL_SPEED_START": config.BALL_SPEED_START,
"STROKE_THICKNESS": config.STROKE_THICKNESS,
"GAME_MAX_SCORE": config.GAME_MAX_SCORE,
}
return Response(config_data, status = status.HTTP_200_OK)