1
0
mirror of https://github.com/GeyserMC/GeyserOptionalPack.git synced 2025-12-19 14:59:14 +00:00
Files
GeyserOptionalPack/src/main/java/org/geysermc/integratedpack/Constants.java
2025-11-17 00:17:20 +01:00

15 lines
398 B
Java

package org.geysermc.integratedpack;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
public class Constants {
public static final String JAVA_TARGET_VERSION = "1.21.8";
public static final String BEDROCK_TARGET_VERSION = "1.21.100.6";
public static final Gson GSON = new GsonBuilder()
.setPrettyPrinting()
.disableHtmlEscaping()
.create();
}