public void removeFromSelection(ArrayList<Point> points) { selectedPoints.removeAll(points); GameManager.getInstance().setSelection(selectedPoints); }
public void addToSelection(ArrayList<Point> points) { selectedPoints.addAll(points); GameManager.getInstance().setSelection(selectedPoints); }