The Last Harbor is a 2D RPG created as a project for my computer science course. It's a simple game consisting of 3 levels where the player must collect all coins to progress to the next level.
This game serves as an introduction to video game development. The code is relatively simple and was created for educational purposes to explore game development concepts.
- Clone the repository
- Create a virtual environment:
python -m venv venv
- Activate the virtual environment:
- Windows:
.\venv\Scripts\activate
- Linux/MacOS:
source venv/bin/activate
- Install dependencies:
pip install -r requirements.txt
- Run the game:
python main.py
Note: On Linux/MacOS, you may need to use pip3
and python3
instead of pip
and python
.
The graphics were made using Tiled by a friend, however the code is entirely my own work.
This project is licensed under the MIT License.