mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-28 08:06:45 +01:00
12 lines
302 B
Java
12 lines
302 B
Java
|
package com.intellectualcrafters.plot.util;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
import com.intellectualcrafters.plot.object.ChunkLoc;
|
||
|
|
||
|
public abstract class BlockUpdateUtil {
|
||
|
public static BlockUpdateUtil setBlockManager = null;
|
||
|
|
||
|
public abstract void update(String worldname, List<ChunkLoc> chunkLocs);
|
||
|
}
|