ternus / pygame-examples

A collection of short-and-sweet pygame games
63 stars 54 forks source link

added a brickout-game #1

Closed christianbender closed 6 years ago

christianbender commented 6 years ago

I added a brickout-game

Brickout-Game in pygame

This is a simple brickout-game. It's includes ball, paddle, brick wall and additional collision detection between this objects. Furthermore logic for winning and losing and scoring. The game is written in Python 2.

You start the game with python game.py

The game runs with 60 frames per second.

I used a code sample for the basic structure of pygame from this site http://programarcadegames.com/ The site contains a comprehensive introduction in Python and Pygame. In addition many many examples.

ternus commented 6 years ago

Thanks for the contribution!

christianbender commented 6 years ago

@ternus Thanks for merging my project!