//defines the points that will create the border: class Points { //the x & y of each point int x; int y; //constructor - assigns the x & y to the points: Points (int _x,int _y) { x=_x; y=_y; } }