-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathafp-mapgen.asd
More file actions
28 lines (28 loc) · 889 Bytes
/
afp-mapgen.asd
File metadata and controls
28 lines (28 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
(asdf:defsystem #:afp-mapgen
:description "A procedural game map generator."
:author ("Michael Fiano <mail@michaelfiano.com>")
:maintainer "Michael Fiano <mail@michaelfiano.com>"
:license "MIT"
:homepage "https://www.youtube.com/channel/UCYg6qFXDE5SGT_YXhuJPU0A"
:source-control (:git "https://github.com/AtlantaFP/afp-mapgen.git")
:bug-tracker "https://github.com/AtlantaFP/afp-mapgen/issues"
:version "0.1.0"
:encoding :utf-8
:long-description #.(uiop:read-file-string (uiop/pathname:subpathname *load-pathname* "README.md"))
:depends-on (#:afp-utils
#:cl-pcg
#:graph)
:pathname "src"
:serial t
:components
((:file "package")
(:file "options")
(:file "random")
(:file "state")
(:file "kernel")
(:file "cell")
(:file "region")
(:file "room")
(:file "junction")
(:file "corridor")
(:file "stage")))