Ejemplo n.º 1
0
  public void mergeLayers(ScreenLayer from, ScreenLayer into) {
    if (!exists(from) || !exists(into)) {
      return;
    }

    into.addComponentsFrom(from);
    guiLayers.remove(from);
  }