Update upstream(Luminol-lithium-sleeping-block-entity)

This commit is contained in:
Helvetica Volubi
2025-08-24 03:46:39 +08:00
parent f79cc86332
commit 074c5c9553
22 changed files with 776 additions and 135 deletions
@@ -0,0 +1,17 @@
package com.logisticscraft.occlusionculling.cache;
public interface OcclusionCache {
void resetCache();
void setVisible(int x, int y, int z);
void setHidden(int x, int y, int z);
int getState(int x, int y, int z);
void setLastHidden();
void setLastVisible();
}