Package com.sk89q.skmcl.profile

Examples of com.sk89q.skmcl.profile.ProfileManager


    @Getter private final Configuration configuration;
    private LauncherFrame mainFrame;

    public Launcher(@NonNull File baseDir) {
        this.baseDir = baseDir;
        this.profiles = new ProfileManager(baseDir);
        this.accounts = Persistence.load(new File(baseDir, "accounts.dat"), AccountList.class);
        this.configuration = Persistence.load(new File(baseDir, "config.json"), Configuration.class);

        if (accounts.getSize() > 0) {
            accounts.setSelectedItem(accounts.getElementAt(0));
View Full Code Here

TOP

Related Classes of com.sk89q.skmcl.profile.ProfileManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.