From 7d9ceaa752b8e89c9326b18d342bd95d23c1cdff Mon Sep 17 00:00:00 2001 From: oakes Date: Fri, 17 Jan 2014 12:39:20 -0500 Subject: [PATCH] Use new render! function --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d5664b4..ee0de0b 100644 --- a/README.md +++ b/README.md @@ -55,10 +55,8 @@ For now, check out the [example projects](https://github.com/oakes/play-clj-exam (fn [screen entities] ; make the screen completely black (clear!) - ; render the tiled map - (render! screen) - ; draw the entities and return them - (draw! screen entities)) + ; render the tiled map, draw the entities and return them + (render! screen entities)) ; this function runs when the screen dimensions change :on-resize