resurrection/src/net/brysonsteck/Resurrection/ParseSettings.java

16 lines
288 B
Java
Raw Normal View History

2021-08-11 20:32:42 -06:00
package net.brysonsteck.Resurrection;
2021-08-11 20:50:08 -06:00
import java.util.Hashtable;
2021-08-11 20:32:42 -06:00
public class ParseSettings {
2021-08-11 20:50:08 -06:00
Hashtable<String, String> settings = new Hashtable<>();
public ParseSettings() {
}
2021-08-11 20:32:42 -06:00
2021-08-11 20:50:08 -06:00
public String getSetting(String setting) {
return settings.get(setting);
}
2021-08-11 20:32:42 -06:00
}