diff options
author | Colin Okay <colin@cicadas.surf> | 2022-07-01 10:53:47 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-07-01 10:53:47 -0500 |
commit | 59f5cb6c28399c84221b728daf4bd8461ab1e230 (patch) | |
tree | ee445c5158d680d3ae4f0892997ca9f0b2d1d86a /examples/05-frameset-animation.lisp | |
parent | 252d952205b4ab4c0c9a5209b18a42666db9fb6a (diff) |
[add] sprite class and example
Diffstat (limited to 'examples/05-frameset-animation.lisp')
-rw-r--r-- | examples/05-frameset-animation.lisp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/05-frameset-animation.lisp b/examples/05-frameset-animation.lisp index 4686ecc..12207f3 100644 --- a/examples/05-frameset-animation.lisp +++ b/examples/05-frameset-animation.lisp @@ -1,7 +1,8 @@ ;;;; examples/05-frameset-animation.lisp (defpackage #:ww.examples/5 - (:use #:cl)) + (:use #:cl) + (:export #:start)) (in-package #:ww.examples/5) @@ -35,7 +36,7 @@ :fps 30 :width 800 :height 600 - :title "Wheelwork Example: An Animated Sprite" + :title "Wheelwork Example: A framebased animation" :asset-root (merge-pathnames "examples/" (asdf:system-source-directory :wheelwork))))) |