16 lines
485 B
Java
16 lines
485 B
Java
![]() |
/*
|
||
|
*
|
||
|
* 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 {
|
||
|
|
||
|
}
|