added setting parser functions
This commit is contained in:
parent
4f1404492b
commit
dc5a958fdf
1 changed files with 11 additions and 1 deletions
|
@ -1,5 +1,15 @@
|
|||
package net.brysonsteck.Resurrection;
|
||||
|
||||
public class ParseSettings {
|
||||
import java.util.Hashtable;
|
||||
|
||||
public class ParseSettings {
|
||||
Hashtable<String, String> settings = new Hashtable<>();
|
||||
|
||||
public ParseSettings() {
|
||||
|
||||
}
|
||||
|
||||
public String getSetting(String setting) {
|
||||
return settings.get(setting);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue