272273274275276277278
* Adds a box at the given coordinates * * @param coords the x/y coordinates */ public void addBox(int[] coords) { addObject(new GraphicsBox(coords)); }
254255256257258259260