mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-04-04 18:56:23 +02:00
28 lines
586 B
Java
28 lines
586 B
Java
package com.gmail.nossr50.config;
|
|
|
|
import com.gmail.nossr50.mcMMO;
|
|
|
|
public class ConfigurableTest extends ConfigLoaderConfigurable {
|
|
|
|
public final static String relativePath = "configurabletest.yml";
|
|
private static ConfigurableTest instance;
|
|
|
|
|
|
|
|
public ConfigurableTest() {
|
|
super(mcMMO.p.getDataFolder(), relativePath);
|
|
}
|
|
|
|
public static ConfigurableTest getInstance() {
|
|
if(instance == null)
|
|
instance = new ConfigurableTest();
|
|
|
|
return instance;
|
|
}
|
|
|
|
@Override
|
|
public boolean validateKeys() {
|
|
return false;
|
|
}
|
|
}
|