field.go 203 B

123456789101112
  1. package snakesimulator
  2. import (
  3. "math/rand"
  4. "time"
  5. )
  6. func (f *Field) GenerateNextFood() {
  7. rand.Seed(time.Now().UnixNano())
  8. f.Food.X = rand.Uint32() % f.Width
  9. f.Food.Y = rand.Uint32() % f.Height
  10. }