A simple shooter for the spring 2016 Lisp Game jam (https://itch.io/jam/spring-2016-lisp-game-jam).

simple-shooter-test.asd 319B

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