Apply CI/CD built version of LibZontreck and LibAC
This commit is contained in:
parent
2039236aec
commit
bff000cd41
2 changed files with 22 additions and 2 deletions
|
@ -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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue