mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-23 21:56:47 +01:00
26 lines
456 B
Java
26 lines
456 B
Java
|
package com.gmail.nossr50.config;
|
||
|
|
||
|
public class RankConfig extends AutoUpdateConfigLoader {
|
||
|
private static RankConfig instance;
|
||
|
|
||
|
public RankConfig()
|
||
|
{
|
||
|
super("skillranks.yml");
|
||
|
validate();
|
||
|
this.instance = this;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
protected void loadKeys() {
|
||
|
|
||
|
}
|
||
|
|
||
|
public static RankConfig getInstance()
|
||
|
{
|
||
|
if(instance == null)
|
||
|
return new RankConfig();
|
||
|
|
||
|
return instance;
|
||
|
}
|
||
|
}
|