2019-05-08 17:07:16 +02:00
|
|
|
|
|
|
|
(defsystem "remote-snake-server"
|
|
|
|
:description "Remote Snake Server."
|
|
|
|
:version "0.0.1"
|
|
|
|
:author "Loic Guegan"
|
2019-05-12 10:14:28 +02:00
|
|
|
:depends-on ( "usocket-server" "jonathan" "cl-strings" )
|
2019-05-08 17:07:16 +02:00
|
|
|
:components ((:file "packages")
|
2019-05-08 21:59:33 +02:00
|
|
|
(:module "game"
|
|
|
|
:depends-on ("packages")
|
|
|
|
:components ((:file "utils")
|
|
|
|
(:file "game"
|
2019-05-09 13:39:11 +02:00
|
|
|
:depends-on ("utils"))))
|
|
|
|
(:module "api"
|
|
|
|
:depends-on ("game")
|
|
|
|
:components ((:file "game-manager")
|
|
|
|
(:file "api"
|
2019-05-10 13:29:26 +02:00
|
|
|
:depends-on ("game-manager"))))
|
|
|
|
(:file "server"
|
|
|
|
:depends-on ("api"))))
|