An experiment building a Roguelike with libtcod and Python
Find a file
2022-05-04 09:25:35 -07:00
.vscode Add a launch.json to run the module 2022-04-26 22:23:17 -07:00
fonts
roguebasin Add diagonal movement 2022-05-04 09:25:35 -07:00
.gitignore Initial commit 2022-05-03 07:15:41 -07:00
01_fixed_size_console.py
02_dynamically_sized_console.py
bsp_visualizer.py A little script to visualize how BSP works; emits a DOT graph 2022-05-03 19:05:53 -07:00
Makefile
README.md Merge remote-tracking branch 'origin/main' 2022-05-03 07:17:39 -07:00
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.