antipodes.asd @ 7ec8744b84c1

Add clothing
author Steve Losh <steve@stevelosh.com>
date Sun, 08 Jan 2017 00:03:46 +0000
parents dd9a7ef86a21
children 083f3f90f805
(asdf:defsystem :antipodes
  :description "IGI Game Jam 2017"

  :author "Steve Losh <steve@stevelosh.com>"

  :license "MIT/X11"
  :version "1.0.0"

  :depends-on (:beast
               :black-tie
               :cl-arrows
               :cl-charms
               :cl-strings
               :iterate
               :losh)

  :serial t
  :components ((:module "vendor" :serial t
                :components ((:file "quickutils-package")
                             (:file "quickutils")))
               (:file "package")
               (:module "src" :serial t
                :components
                ((:file "utilities")
                 (:file "config")
                 (:module "aspects" :serial t
                  :components ((:file "coordinates")
                               (:file "holdable")
                               (:file "trigger")
                               (:file "visible")))
                 (:module "entities" :serial t
                  :components ((:file "food")
                               (:file "clothing")
                               (:file "ruin")
                               (:file "player")))
                 (:file "flavor")
                 (:file "main")))))