You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Food.java 342B

1234567891011121314151617181920212223242526
  1. package com.rthoni.uqac.pigeon;
  2. /**
  3. * Created by ZHAJOR on 30/10/2016.
  4. */
  5. public class Food {
  6. private int x;
  7. private int y;
  8. public Food(int x, int y) {
  9. this.x = x;
  10. this.y = y;
  11. }
  12. public Food() {
  13. }
  14. public int getX() {
  15. return x;
  16. }
  17. public int getY() {
  18. return y;
  19. }
  20. }