diff options
Diffstat (limited to 'package.lisp')
-rw-r--r-- | package.lisp | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/package.lisp b/package.lisp index 5f739c5..e79e1a7 100644 --- a/package.lisp +++ b/package.lisp @@ -2,13 +2,25 @@ (defpackage #:animise (:use #:cl #:lettuce) + (:import-from #:trivia #:match) (:export - ;; TWEENS + ;; TWEEN CLASSES #:tween - #:make-tween - #:end-time + #:tween-seq + #:tween-group + + ;; TWEEN PROTOCOL + #:start-time + #:duration + #:run-tween + + ;; TWEEN FUNCTIONS #:tween-finished-p + #:in-sequence + #:end-time + #:add-to-group + #:as-group ;; EASING FUNCTIONS #:bouce-out |