Add initial CL port of the cells/grids
author |
Steve Losh <steve@stevelosh.com> |
date |
Fri, 20 May 2016 01:03:47 +0000 |
parents |
e6b1ce8ed084 |
children |
800b4dcae88c |
(asdf:defsystem #:mazes
:name "mazes"
:description "Working through the Mazes for Programmers book."
:author "Steve Losh <steve@stevelosh.com>"
:license "MIT/X11"
:version "0.0.1"
:depends-on (#:defstar
#:sketch
#:sb-cga
#:cl-arrows)
:serial t
:components
((:file "quickutils") ; quickutils package ordering crap
(:file "package")
(:module "src"
:serial t
:components ((:file "utils")
(:file "fps")
(:file "grid")
(:file "demo")
))))