Skip to content

Commit

Permalink
Make make-binary function available in :starwar package
Browse files Browse the repository at this point in the history
  • Loading branch information
ryukinix committed Feb 11, 2018
1 parent b2bcc90 commit b81ad36
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 22 deletions.
2 changes: 1 addition & 1 deletion src/packages.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
(defpackage :starwar
(:use :cl :starwar-lib)
(:documentation "this is the star war game!")
(:export :main :run))
(:export :main :run :make-binary))
43 changes: 22 additions & 21 deletions starwar.asd
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,25 @@
:starwar-lib)
:pathname "src"
:components ((:file "packages")
(:file "globals" :depends-on ("packages"))
(:file "hittable-circle" :depends-on ("packages"))
(:file "classes" :depends-on ("packages"
"hittable-circle"))
(:file "star" :depends-on ("packages"
"classes"
"globals"
"hittable-circle"))
(:file "planet" :depends-on ("packages"
"classes"
"globals"
"hittable-circle"
"star"))
(:file "player" :depends-on ("packages"
"classes"
"globals"))
(:file "starwar" :depends-on ("packages"
"globals"
"hittable-circle"
"star"
"planet"))))
(:file "make-binary")
(:file "globals" :depends-on ("packages"))
(:file "hittable-circle" :depends-on ("packages"))
(:file "classes" :depends-on ("packages"
"hittable-circle"))
(:file "star" :depends-on ("packages"
"classes"
"globals"
"hittable-circle"))
(:file "planet" :depends-on ("packages"
"classes"
"globals"
"hittable-circle"
"star"))
(:file "player" :depends-on ("packages"
"classes"
"globals"))
(:file "starwar" :depends-on ("packages"
"globals"
"hittable-circle"
"star"
"planet"))))

0 comments on commit b81ad36

Please sign in to comment.