This commit is contained in:
Milan Nikolic 2021-11-11 17:03:15 +01:00
parent 3e1b83e017
commit dda13779be
No known key found for this signature in database
GPG key ID: 9229D0EAA3AA4E75
16 changed files with 17 additions and 2 deletions

View file

@ -9,7 +9,7 @@ import (
func main() {
rl.InitWindow(800, 450, "raylib [core] example - generate random values")
framesCounter := 0 // Variable used to count frames
framesCounter := 0 // Variable used to count frames
randValue := rl.GetRandomValue(-8, 5) // Get a random integer number between -8 and 5 (both included)
rl.SetTargetFPS(60)