package chu.engine; public class Vertex { int x; int y; public Vertex(int x, int y) { this.x = x; this.y = y; } }