Skip to content

Latest commit

 

History

History
80 lines (46 loc) · 1.34 KB

README.md

File metadata and controls

80 lines (46 loc) · 1.34 KB

Plane game

Just a plain plane game made with Pygame. This is a simple game where you control a plane and avoid obstacles. The purpose of this project is to learn Pygame and implementing OOP as best as possible in Python.

Screenshoots

Library, Frameworks & Tools Used

Setup & Run

if you want to run the game, continue or modify this project, you can follow these steps:

  • Clone this project
git clone https://github.com/jo0707/planegame
  • open the directory in your IDE/Text Editor. Or change directory to the project
cd planegame

Make sure you have Python 3.11 installed on your machine

(another version of Python may work, but I recommend using Python 3.11)

  • Install Pygame

    • Windows
    pip install pygame
    
    • Linux
    python -m venv venv
    source venv/bin/activate
    pip install pygame
  • Run the project

    python main.py

    or

    python3 main.py

That's it! The game should be running now.

Contributing

Made by jo0707

Feel free to contribute to this repository!