diff options
Diffstat (limited to 'packages.lisp')
-rw-r--r-- | packages.lisp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/packages.lisp b/packages.lisp index cd99262..386abe1 100644 --- a/packages.lisp +++ b/packages.lisp @@ -34,7 +34,13 @@ (defpackage cantedraw.model (:use :cl :cantedraw.lib.macros :cantedraw.lib.functions) - (:export :int-card :rank :suit :card :cardset)) + (:export + ;; Types + :int-card :rank :suit :card :cardset + ;; Converters + :int->suit :int->rank :int->card + :suit->int :rank->int :card->int + )) (defpackage cantedraw.main (:use :cl :cantedraw.lib.macros :cantedraw.lib.functions) |