From 0520e24cad4add030e543dc66ba88576834050c2 Mon Sep 17 00:00:00 2001 From: Adam Jurkiewicz Pythonista Local Date: Tue, 17 Mar 2026 12:56:50 +0100 Subject: [PATCH] =?UTF-8?q?pong=20-=20grafika=20pi=C5=82ka?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dzien_01/d_03_pong.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dzien_01/d_03_pong.py b/dzien_01/d_03_pong.py index d5d921c..fdfc5d9 100644 --- a/dzien_01/d_03_pong.py +++ b/dzien_01/d_03_pong.py @@ -6,6 +6,8 @@ TITLE = "PONG - najlepsza gra na świecie ;-)" # definicja sprita sprite = Actor("ball.png") +sprite.x = WIDTH//2 +sprite.y = HEIGHT//2 # Najważniejsze funkcje sterujące def update():