diff options
Diffstat (limited to 'packages.lisp')
-rw-r--r-- | packages.lisp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/packages.lisp b/packages.lisp index e12156e..1898e35 100644 --- a/packages.lisp +++ b/packages.lisp @@ -48,8 +48,17 @@ ;; Constructors :make-joker :make-deck)) -(defpackage cantedraw.main +(defpackage cantedraw.game (:use :cl :cantedraw.lib.macros :cantedraw.lib.functions :cantedraw.model) + (:export + :deal-cards + :deal-hands + :redeal-hand)) + +(defpackage cantedraw.main + (:use :cl + :cantedraw.lib.macros :cantedraw.lib.functions + :cantedraw.model :cantedraw.game) (:export :start)) |