package com.javarush.games; public class GameObject { public int x; public int y; public GameObject (int x ,int y){ this.x=x; this.y=y; } }