1
0
forked from Clones/Controlify

✏️ Re-add immediately fast compat

This commit is contained in:
isXander
2023-06-21 19:06:30 +01:00
parent c5c7a3775f
commit b370572dcc
4 changed files with 10 additions and 11 deletions

View File

@ -1,13 +1,13 @@
package dev.isxander.controlify.compatibility.immediatelyfast;
//import net.raphimc.immediatelyfast.feature.batching.BatchingBuffers;
import net.raphimc.immediatelyfast.feature.batching.BatchingBuffers;
public class ImmediatelyFastCompat {
public static void beginHudBatching() {
// BatchingBuffers.beginHudBatching();
BatchingBuffers.beginHudBatching();
}
public static void endHudBatching() {
// BatchingBuffers.endHudBatching();
BatchingBuffers.endHudBatching();
}
}