flora-search-aurora/flora-search-aurora.asd
Jaidyn Ann 06e875b271 Create the scaffodling for an inventory menu
All it does right now is print your raw list of
items. That’s OK for now! =w=
2023-06-27 21:36:13 -05:00

19 lines
700 B
Common Lisp

(defsystem "flora-search-aurora"
:depends-on ("alexandria" "assoc-utils" "cl-charms" "str")
:build-operation "program-op"
:build-pathname "flora-search-aurora"
:entry-point "flora-search-aurora:main"
:components ((:file "util")
(:file "display")
(:file "input")
(:file "ui")
(:file "inventory")
(:file "overworld.util")
(:file "overworld")
(:file "dialogue")
(:file "engine")
(:file "flora-search-aurora")
(:file "res/maps/casino.tmx")
(:file "res/maps/outdoors.tmx")
(:file "res/maps/flashback-school.tmx")))