translation file support
This commit is contained in:
@@ -2,15 +2,16 @@ package com.kasetoatz.dacl.options;
|
||||
|
||||
import com.google.gson.JsonElement;
|
||||
import com.kasetoatz.dacl.options.validators.AbstractValidator;
|
||||
import net.minecraft.text.Text;
|
||||
|
||||
public class IntOption extends AbstractInputOption<Integer>
|
||||
{
|
||||
public IntOption(String text, String key, Integer defaultValue, AbstractValidator<Integer> validator)
|
||||
public IntOption(Text text, String key, Integer defaultValue, AbstractValidator<Integer> validator)
|
||||
{
|
||||
super(text, key, defaultValue, validator);
|
||||
}
|
||||
|
||||
public IntOption(String text, String key, Integer defaultValue)
|
||||
public IntOption(Text text, String key, Integer defaultValue)
|
||||
{
|
||||
super(text, key, defaultValue);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user