summaryrefslogtreecommitdiff
path: root/2d
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2013-10-23 22:50:17 -0400
committerDavid Thompson <dthompson2@worcester.edu>2013-10-23 22:50:17 -0400
commit93633116cc3f3ffc01cb62cddf1222c50c816b4c (patch)
tree43de5c091ddbdda2f2df000479d5a06fd8779837 /2d
parentac40093565b7c532495749f8b38d1d88cc3e7395 (diff)
Add temporary dummy procedure.
Diffstat (limited to '2d')
-rw-r--r--2d/stage.scm4
1 files changed, 4 insertions, 0 deletions
diff --git a/2d/stage.scm b/2d/stage.scm
index 91afe97..8dc7386 100644
--- a/2d/stage.scm
+++ b/2d/stage.scm
@@ -35,6 +35,7 @@
exit-stage
draw-stage
update-stage
+ stage-trigger
stage-define
stage-ref
stage-set!
@@ -78,6 +79,9 @@
"Call the scene draw callback for STAGE."
((scene-draw (stage-scene stage))))
+(define (stage-trigger stage event . args)
+ #f)
+
;;;
;;; Stage environment
;;;