Package transientlibs.bindedobjects.core.datasets

Source Code of transientlibs.bindedobjects.core.datasets.Skills

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package transientlibs.bindedobjects.core.datasets;

import transientlibs.tex.ReqList;
import transientlibs.bindedobjects.core.Binding;
import transientlibs.bindedobjects.core.loaders.SkillLoader;

/**
*
* @author kibertoad
*/
public class Skills extends BindedValue {

    //String LName;
    //String desc;
   
    public ReqList trainReqs;
    //public static ArrayList<Skill> skills = new ArrayList<Skill>();
    //public static Skill lastSkill;
    public static BindedValueContainer<Skills> container = new BindedValueContainer<Skills>(Binding.skillBinding);

    public static void loadSkills() {
        SkillLoader loader = new SkillLoader(container);
        loader.loadFromFile("skills.dat");  
    }
}
TOP

Related Classes of transientlibs.bindedobjects.core.datasets.Skills

TOP
Copyright © 2018 www.massapi.com. 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.