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.

crypts-and-corpses-test.asd 334B

123456789101112
  1. ;;;; crypts-and-corpses-test.asd
  2. (asdf:defsystem #:crypts-and-corpses-test
  3. :author "Lily Carpenter <lily-license@azrazalea.net"
  4. :license "AGPLv3"
  5. :depends-on (:crypts-and-corpses
  6. :prove
  7. :check-it)
  8. :pathname "src/test"
  9. :components ((:file "suite"))
  10. :description "Testing Crypts and Corpses")