An experiment building a Roguelike with libtcod and Python
Find a file
2022-05-11 08:08:47 -07:00
.vscode
fonts
roguebasin Remove a newline 2022-05-11 08:08:47 -07:00
.gitignore
.pylintrc Allow 'hp' as a valid variable name 2022-05-11 07:50:35 -07:00
01_fixed_size_console.py
02_dynamically_sized_console.py
bsp_visualizer.py
logging_config.json Configure logging with logging_config.json 2022-05-11 07:52:35 -07:00
Makefile Update the Makefile to use .venv as the virtual env directory 2022-05-08 08:54:54 -07:00
README.md
requirements.txt
tcod.code-workspace

Going Rogue

An experiment building a Roguelike with libtcod and Python

libtcod is a library that provides a bunch of useful routines for building Roguelikes. There are C++ and Python interfaces.

There are Python docs.

I also found a "make a Roguelike with libtcod" tutorial on Rogue Basin.