This commit is contained in:
mcrcortex
2025-01-30 00:06:21 +10:00
parent 900e72d1fc
commit 5421452429

View File

@@ -0,0 +1,16 @@
package me.cortex.voxy.common.world;
public class L2SectionCache {
//Sections may go here before they goto die
public L2SectionCache(int size) {
}
public void put(WorldSection worldSection) {
}
public WorldSection reacquire(long pos) {
//Try to re-acquire a section from the cache and revive it
}
}