package com.rthoni.uqac.pigeon; /** * Created by ZHAJOR on 30/10/2016. */ public class Food { private int x; private int y; public Food(int x, int y) { this.x = x; this.y = y; } public Food() { } public int getX() { return x; } public int getY() { return y; } }