Apply CI/CD built version of LibZontreck and LibAC

This commit is contained in:
Zontreck 2024-02-06 22:34:20 -07:00
parent 2039236aec
commit bff000cd41
2 changed files with 22 additions and 2 deletions

View file

@ -3,7 +3,7 @@
org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false
libzontreck=1.10.013124.1729
libzontreck=1.10.020624.2226
## Environment Properties
@ -49,7 +49,7 @@ mod_name=Aria's Essentials
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
mod_license=GPLv3
# The mod version. See https://semver.org/
mod_version=1.2.013124.1836
mod_version=1.2.020624.2232
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
# This should match the base package used for the mod sources.
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html

View file

@ -1,11 +1,31 @@
package dev.zontreck.essentials.rtp;
import dev.zontreck.essentials.events.RTPFoundEvent;
import dev.zontreck.essentials.util.EssentialsDatastore;
import dev.zontreck.libzontreck.vectors.WorldPosition;
import net.minecraft.nbt.CompoundTag;
import net.minecraftforge.eventbus.api.SubscribeEvent;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.List;
public class RTPCaches
{
public static List<RTP> Locations = new ArrayList<>();
public static final Path BASE = EssentialsDatastore.of("rtp.nbt", false);
@SubscribeEvent
public static void onRTPFound(RTPFoundEvent found)
{
}
public static void deserialize(CompoundTag tag)
{
}
}