https://github.com/mes32/tcod-tutorial
https://github.com/mes32/tcod-tutorial
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mes32/tcod-tutorial
- Owner: mes32
- Created: 2024-08-17T21:49:04.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-19T02:55:41.000Z (almost 2 years ago)
- Last Synced: 2025-05-30T06:25:50.344Z (about 1 year ago)
- Language: Python
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TCOD Tutorial
## Setup
```
# Create venv
python3 -m venv venv
# Activate virtual environment
source venv/bin/activate
# Install requirements in requirements.txt
pip3 install -r requirements.txt
```
## Running
```
python main.py
```