Change func Update() to func Update(deltaTime)

This commit is contained in:
sam-astro 2022-05-20 23:02:50 -04:00 committed by GitHub
parent bd2c7b9c28
commit ef328935b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -109,7 +109,7 @@ func Start()
} }
// Executes each frame // Executes each frame
func Update() func Update(deltaTime)
{ {
// Draws the image created in Start(). This is usually at the end of update. // Draws the image created in Start(). This is usually at the end of update.
ZS.Graphics.Draw(exampleSprite) ZS.Graphics.Draw(exampleSprite)