From ef328935b97c0252df27db0944dd41ed9e93f7b2 Mon Sep 17 00:00:00 2001 From: sam-astro <77079540+sam-astro@users.noreply.github.com> Date: Fri, 20 May 2022 23:02:50 -0400 Subject: [PATCH] Change `func Update()` to `func Update(deltaTime)` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 136027c..fc6c7ba 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ func Start() } // Executes each frame -func Update() +func Update(deltaTime) { // Draws the image created in Start(). This is usually at the end of update. ZS.Graphics.Draw(exampleSprite)