package ge.edu.freeuni.sdp.snake.presenter; public class CellPosition { public int x; public int y; public CellPosition(int x, int y) { this.x = x; this.y = y; } }