igeryu / ffxiv_profile_manager

Layout Manager for Final Fantasy XIV's custom UI.
2 stars 0 forks source link

Determine if the Profile constructor should receive a String filename or a File object #9

Open igeryu opened 8 years ago

igeryu commented 8 years ago
public Profile (String n, String cName, String cID, String dir) {
    name = n;
    characterName = cName;
    characterID = cID;
    directory = dir;

    loadProfileData();
}