For the lisp game jam http://itch.io/jam/january-2016-lisp-game-jam. Also practice for my future forever project game (not yet named). This is a roguelike where you play a necromancer able to summon skeletons and any other powers I have time for.
123456789101112 |
- ;;;; crypts-and-corpses-test.asd
- (asdf:defsystem #:crypts-and-corpses-test
- :author "Lily Carpenter <lily-license@azrazalea.net"
- :license "AGPLv3"
- :depends-on (:crypts-and-corpses
- :prove
- :check-it)
- :pathname "src/test"
- :components ((:file "suite"))
- :description "Testing Crypts and Corpses")
|