-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeserted.asd
28 lines (28 loc) · 899 Bytes
/
deserted.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
25
26
27
28
(cl:pushnew :bodge-gl2 cl:*features*)
(asdf:defsystem "deserted"
:description "Game made for Mini Jam 2019-05-17"
:version "0.0.1"
:author "Elias Feijó"
:license "MIT"
:depends-on (alexandria
bodge-utilities
trivial-gamekit
cxml
cl-csv)
:serial t
:pathname "src/"
:components ((:file "packages")
(:file "util")
(:file "math")
(:file "tmx-parser")
(:file "tile")
(:file "fog")
(:file "animation")
(:file "animation-skeleton")
(:file "skeleton-spear")
(:file "animation-player")
(:file "player")
(:file "camera")
(:file "world")
(:file "state")
(:file "main")))