From b2e6ffb62c57f00a00bdeb7090b008dab6952052 Mon Sep 17 00:00:00 2001 From: fdai4581 Date: Wed, 1 Feb 2023 01:40:33 +0100 Subject: [PATCH] add Ball class --- README.md | 1 - src/main/java/Ball.java | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 src/main/java/Ball.java diff --git a/README.md b/README.md index 2a78ee8..6f03192 100644 --- a/README.md +++ b/README.md @@ -5,4 +5,3 @@ Pong Game developed by Eren Esen, Berkan Sarp, Justin Senn, Brice Tchoumi Pong game is a two-player table tennis-themed console game. The game involves two paddles and a moving ball. The players have to move paddles in an upwards or downwards direction and save the ball from getting hit onto the wall. If the ball hits the wall then it’s a score for another player. The game ends at 20 Points. - diff --git a/src/main/java/Ball.java b/src/main/java/Ball.java new file mode 100644 index 0000000..f1f843c --- /dev/null +++ b/src/main/java/Ball.java @@ -0,0 +1,2 @@ +public class Ball { +}