mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-16 20:36:12 +00:00
293ea04c56
* rename everything containing staff back to admin (as requested by ryan i've renamed commands like slconfig to saconfig but left "slconfig" as an alias) * format almost every file correctly * a few other improvements
12 lines
243 B
Java
12 lines
243 B
Java
package me.totalfreedom.totalfreedommod.config;
|
|
|
|
import org.bukkit.configuration.ConfigurationSection;
|
|
|
|
public interface IConfig
|
|
{
|
|
void loadFrom(ConfigurationSection cs);
|
|
|
|
void saveTo(ConfigurationSection cs);
|
|
|
|
boolean isValid();
|
|
} |