~groctel/curse-of-nil

https://www.rogueliketutorials.com/tutorials/tcod/v2/part-1/
feat: TCOD Tutorial part 2
feat: TCOD Tutorial part 1

refs

main
browse  log 

clone

read-only
https://git.sr.ht/~groctel/curse-of-nil
read/write
git@git.sr.ht:~groctel/curse-of-nil

You can also use your local clone with git send-email.

#Curse of nil

An rpg game for your terminal

#Building the game

This repository doesn't ship any generated files. You first need to generate the autotools configuration:

autoreconf -iv -Wall

After that, create the build directory, run the newly created configure script and build:

mkdir build
cd build
../configure
make

You should find the executable in build/src.

#TCOD

I'm making this game by following the Roguelike Tutorial for TCOD and Python3 and adapting it for ncurses. The first commits will be me following the tutorial as closely as possible and at some point I'll start adding stuff of my own :)

Do not follow this link