namespace ProjectLiner { abstract public class GameObject { public Point position; public GameObject() { position = new Point(); } } }