Advertisement
Guest User

Food.java

a guest
Nov 15th, 2018
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. package com.codef0x.snake;
  2.  
  3. public class Food {
  4.     int foodX;
  5.     int foodY;
  6.  
  7.     public void spawn(int maxHeight, int maxWidth) {
  8.         // todo Get size of board to spawn food properly
  9.         this.foodX = (int) Math.ceil(Math.random() * maxHeight);
  10.         this.foodY = (int) Math.ceil(Math.random() * maxWidth);
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement