diff options
Diffstat (limited to 'packages.lisp')
-rw-r--r-- | packages.lisp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/packages.lisp b/packages.lisp index 1898e35..574da08 100644 --- a/packages.lisp +++ b/packages.lisp @@ -48,6 +48,18 @@ ;; Constructors :make-joker :make-deck)) +(defpackage cantedraw.player + (:use :cl + :cantedraw.lib.macros :cantedraw.lib.functions + :cantedraw.model) + (:export + :player + :players + :player-id :player-balance :player-hand + :player-exists? :player-bankrupt? :player-can-bet? + :player-pay + :player-receive)) + (defpackage cantedraw.game (:use :cl :cantedraw.lib.macros :cantedraw.lib.functions |