package de.tobiyas.racesandclasses.standalonegui.login;
import java.io.File;
import java.util.LinkedList;
import java.util.List;
public class ServerConnection {
/**
* Downloads the Server data.
*
* @param data to get.
*
* @return the data files.
*/
public static List<File> downloadFiles(ServerConnectionData data){
List<File> files = new LinkedList<File>();
try{
}catch(Throwable exp){
exp.printStackTrace();
}
return files;
}
}