-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraria-map-dump.asd
24 lines (24 loc) · 981 Bytes
/
terraria-map-dump.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
(defsystem :terraria-map-dump
:description "Terraria Map Dumper"
:version "1.0"
:author "Chris Dusto <cricket_lover@live.com>"
:bug-tracker "https://github.com/TruePikachu/terraria-map-dump/issues"
:licence "MIT License"
:depends-on (:cl-reexport :deflate :flexi-streams :zpng)
:components ((:file "binary-reader")
(:file "color")
(:file "map"
:depends-on ("binary-reader"
"tile"))
(:file "package"
:depends-on ("color"
"map"
"render-png"
"tile"))
(:file "render-png"
:depends-on ("color"
"map"
"tile"))
(:file "tile"
:depends-on ("binary-reader"
"color"))))