Skip to content

Latest commit

 

History

History

day094

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Day 94 Course Assignment: Space Invaders

Build the classic arcade game where you shoot down alien ships.

Space Invaders

Concepts Practised

  • Make a 2D Game With PyGame
  • Draw (blit) items on the screen
  • Organized Use of Classes
  • Handling User Input (Player's Actions)
  • Implementing Event Loops

Play the Game Locally:

  1. CD into the ./Space-Invaders directory

  2. Install the required packages using pip install -r requirements.txt

  3. Run the game using python main.py

Space Invaders

day94