public void point( GameElement pointedElement ) { // Send the selected element to the pointed element // and vice-versa! if (selectedElement) { pointedElement.sendSelection(selectedElement); selectedElement.sendSelection(pointedElement); } }