1
0
mirror of https://github.com/GeyserMC/GeyserOptionalPack.git synced 2025-12-21 07:49:27 +00:00

The rename: Optional is now Integrated (#70)

This commit is contained in:
chris
2025-11-17 00:17:20 +01:00
committed by GitHub
parent 37ac51459d
commit 982fa6c3fa
88 changed files with 122 additions and 126 deletions

View File

@@ -0,0 +1,14 @@
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();
}