-
Notifications
You must be signed in to change notification settings - Fork 0
/
syshack.asd
38 lines (37 loc) · 1.03 KB
/
syshack.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
29
30
31
32
33
34
35
36
37
38
;;;; syshack.asd
(asdf:defsystem #:syshack
:description "Top view RPG themed system hacking"
:author "Yeonho Jang<[email protected]>"
:license "MIT"
:version "0.0.1"
:serial t
:depends-on (#:sdl2 #:sdl2-image #:sdl2-mixer #:swank #:imago #:cl-ppcre #:cl-tiled #:arrows )
:components ((:file "package")
(:file "syshack")
(:module "src"
:components ((:file "action")
(:file "color")
(:file "asset_manager")
(:file "sprite")
(:file "physics")
(:file "key")
(:file "entity")
(:file "animation")
(:file "component")
(:file "camera")
(:file "texture")
(:file "hangul")
(:file "bitmap_font")
(:file "util")
(:file "gamemap")
(:file "tiled")
(:file "text")
(:file "global")
(:file "dialog")
(:file "scene")
(:file "scene_zelda")
(:file "game")))
(:module "gui"
:components ((:file "gui")
(:file "panel")
(:file "dialog-window")))))