From 8a2e0991b81d76a32c8e810262fdfdfb9ff942f1 Mon Sep 17 00:00:00 2001 From: fdai8040 Date: Sat, 3 Feb 2024 18:11:12 +0000 Subject: [PATCH] =?UTF-8?q?refactoring:=20l=C3=B6schen=5Fnicht=5Fkonsisten?= =?UTF-8?q?t?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/c/Pong/pong.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/main/c/Pong/pong.h b/src/main/c/Pong/pong.h index 9074535..4e6cfdd 100644 --- a/src/main/c/Pong/pong.h +++ b/src/main/c/Pong/pong.h @@ -5,14 +5,5 @@ int pong(); void resetScore(int *score1, int *score2); -typedef struct { - int x; - int y; - int speedX; - int speedY; -} Ball; - -void updateBallPosition(Ball* ball); - #endif