aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/02-moving-bitmp.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/02-moving-bitmp.lisp')
-rw-r--r--examples/02-moving-bitmp.lisp12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/02-moving-bitmp.lisp b/examples/02-moving-bitmp.lisp
index b07f1aa..d0a5598 100644
--- a/examples/02-moving-bitmp.lisp
+++ b/examples/02-moving-bitmp.lisp
@@ -1,4 +1,4 @@
-;;; 01-bitmap-display.lisp
+;;; 01-image-display.lisp
(defpackage #:ww.examples/2
(:use #:cl)
@@ -6,7 +6,7 @@
(in-package :ww.examples/2)
-(defclass bitmap-display (ww::application ) ())
+(defclass image-display (ww::application ) ())
(defvar *shared-anim-table* (make-hash-table :synchronized t))
@@ -100,12 +100,12 @@
(ww::on-mousewheel ()
(print (list :mousewheel horiz vert dir))))
-(defmethod ww::boot ((app bitmap-display))
+(defmethod ww::boot ((app image-display))
(let ((bm
- (make-instance 'ww::bitmap
+ (make-instance 'ww::image
:texture (ww::get-asset "Fezghoul.png")))
(bm2
- (make-instance 'ww::bitmap
+ (make-instance 'ww::image
:texture (ww::get-asset "GelatinousCube.png"))))
(ww::add-handler app #'wheelie)
@@ -130,7 +130,7 @@
(defun start ()
- (ww::start (make-instance 'bitmap-display
+ (ww::start (make-instance 'image-display
:scale 2.0
:fps 60
:width 800