aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/02-moving-bitmp.lisp
diff options
context:
space:
mode:
authorColin Okay <colin@cicadas.surf>2022-07-19 06:48:39 -0500
committerColin Okay <colin@cicadas.surf>2022-07-19 06:48:39 -0500
commit615c08f0f8fabd504b2bb076410d57dde7cfe34a (patch)
treedb3c8b9a285550ba6ae07e82fe459585099eebea /examples/02-moving-bitmp.lisp
parentac967b3befc75c575a4191728469ee5c161dcde5 (diff)
[example] updating names
Diffstat (limited to 'examples/02-moving-bitmp.lisp')
-rw-r--r--examples/02-moving-bitmp.lisp8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/02-moving-bitmp.lisp b/examples/02-moving-bitmp.lisp
index d0a5598..bb348a1 100644
--- a/examples/02-moving-bitmp.lisp
+++ b/examples/02-moving-bitmp.lisp
@@ -1,4 +1,4 @@
-;;; 01-image-display.lisp
+;;; 01-image-transforms-and-events.lisp
(defpackage #:ww.examples/2
(:use #:cl)
@@ -6,7 +6,7 @@
(in-package :ww.examples/2)
-(defclass image-display (ww::application ) ())
+(defclass image-transforms-etc (ww::application ) ())
(defvar *shared-anim-table* (make-hash-table :synchronized t))
@@ -100,7 +100,7 @@
(ww::on-mousewheel ()
(print (list :mousewheel horiz vert dir))))
-(defmethod ww::boot ((app image-display))
+(defmethod ww::boot ((app image-transforms-etc))
(let ((bm
(make-instance 'ww::image
:texture (ww::get-asset "Fezghoul.png")))
@@ -130,7 +130,7 @@
(defun start ()
- (ww::start (make-instance 'image-display
+ (ww::start (make-instance 'image-transforms-etc
:scale 2.0
:fps 60
:width 800