mirror of
https://github.com/Theta-Dev/ConstructionWand.git
synced 2025-08-06 02:45:26 +02:00
19 lines
534 B
Java
19 lines
534 B
Java
package thetadev.constructionwand.basics;
|
|
|
|
import net.minecraftforge.common.ForgeConfigSpec;
|
|
|
|
public class ConfigClient
|
|
{
|
|
private static final ForgeConfigSpec.Builder BUILDER = new ForgeConfigSpec.Builder();
|
|
|
|
public static final ForgeConfigSpec.BooleanValue SHIFTCTRL;
|
|
|
|
static {
|
|
BUILDER.push("keys");
|
|
BUILDER.comment("Press SHIFT+CTRL instead of SHIFT for changing wand mode/direction lock");
|
|
SHIFTCTRL = BUILDER.define("ShiftCtrl", false);
|
|
BUILDER.pop();
|
|
}
|
|
|
|
public static final ForgeConfigSpec SPEC = BUILDER.build();
|
|
}
|