the_big_one/src/main/java/jesse/keeblarcraft/ConfigMgr/ConfigManager.java

16 lines
485 B
Java
Raw Normal View History

/*
*
* ConfigManager
*
* This class is the central configuration file manager for all other classes and acts as a utility class for other classes to use.
* It is typical to define this class as a general object (not static instance) for each class in single-threaded actions. If you need
* a special function or action from this class; it is recommended to add it to this class and not make your own.
*
*/
package jesse.keeblarcraft.ConfigMgr;
public class ConfigManager {
}