The title 'The Block and The Ball' is a simple game made using Python's Pygame module. The game was created as my first programming project in order to get familiar with Python and game development in general.
Its a game where the player controls a blue block and tries to prevent a red ball from falling off the screen. The player controls the block with the left and right arrow keys. The player gets a point from every successful hit against the ball, it will also increase the ball's speed. The ball will bounce in a different direction every time it collides with a wall or the block. If the ball falls off from the bottom of the screen, the player loses and their points are saved into a scores.txt file. After that the game will restart. The 'scores.txt' file is saved in the same folder as the game's Python file.