blob: 401e39c400e827cc4cf17cb4defa3f316886c188 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
;;;; animise.asd
(asdf:defsystem #:animise
:description "General Purpose Tweens"
:author "<thegoofist@protonmail.com>"
:license "AGPLv3.0"
:version "0.0.1"
:serial t
:depends-on (#:lettuce #:trivia)
:components ((:file "package")
(:file "easing")
(:file "animise")
(:file "tweening")))
|