mirror of
https://github.com/GeyserMC/GeyserOptionalPack.git
synced 2025-12-19 14:59:14 +00:00
15 lines
398 B
Java
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();
|
|
}
|