3
0

Initial commit (Forge 1291).

This commit is contained in:
gamerforEA
2015-03-22 20:38:04 +03:00
commit 16773ead6a
611 changed files with 64826 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package net.minecraftforge.cauldron.configuration;
public abstract class Setting<T>
{
public final String path;
public final T def;
public final String description;
public Setting(String path, T def, String description)
{
this.path = path;
this.def = def;
this.description = description;
}
public abstract T getValue();
public abstract void setValue(String value);
}