Move RTP functionality into its own thing to reduce overall lag when using RTP

This commit is contained in:
zontreck 2023-12-18 16:57:59 -07:00
parent eb1189e67f
commit 408e5d91d6
14 changed files with 422 additions and 264 deletions

View file

@ -0,0 +1,11 @@
package dev.zontreck.essentials.rtp;
import dev.zontreck.libzontreck.vectors.WorldPosition;
import java.util.ArrayList;
import java.util.List;
public class RTPCaches
{
public static List<RTP> Locations = new ArrayList<>();
}