Skip to content

Latest commit

 

History

History
56 lines (35 loc) · 985 Bytes

File metadata and controls

56 lines (35 loc) · 985 Bytes

Shooter-Aircraft-Game-using-PyGame-Library

Outlines

  • Introduction
  • Game overview
  • Game logic and rules
  • Winning scenario
  • Game over and termination

Program structure

  • main.py
  • ball.py
  • brick.py
  • config.py
  • game_menu.py
  • paddle.py

Run the following command to start the game

python main.py

Introduction

  • The game was developed using the PyGame library
  • The game consist of different elements such as paddle, bricks, and balls.
  • The score is increased when a ball collides with a brick

Game overview

  • Starting window of the game console

image

  • Select the Game Rules button for instruction

image

  • Select the PLAY button for start playing

image

  • Random scenario of the game

image

  • Winning of the game with score and time

image

  • Lost and game over with score and time

image