This commit is contained in:
坏黑
2018-04-22 22:12:42 +08:00
parent c573617a01
commit b49a779859
126 changed files with 1896 additions and 705 deletions

View File

@@ -0,0 +1,23 @@
package com.ilummc.tlib.config;
import com.ilummc.tlib.annotations.Config;
/**
* @author sky
* @since 2018-04-22 14:31:11
*/
@Config(name = "tlib.yml", listenChanges = true, readOnly = false)
public class TLibConfig {
private String[] locale = {"zh_CN", "en_US"};
public String[] getLocale() {
return locale;
}
private boolean enablePlaceholderHookByDefault = false;
public boolean isEnablePlaceholderHookByDefault() {
return enablePlaceholderHookByDefault;
}
}