mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-08-06 04:23:26 +00:00
block updating
This commit is contained in:
parent
5b3a2d58b4
commit
2359e546df
17 changed files with 318 additions and 266 deletions
|
@ -0,0 +1,13 @@
|
|||
package com.intellectualcrafters.plot.util;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
import org.bukkit.Chunk;
|
||||
|
||||
public abstract class AbstractSetBlock {
|
||||
public static AbstractSetBlock setBlockManager = null;
|
||||
|
||||
public abstract boolean set(final org.bukkit.World world, final int x, final int y, final int z, final int blockId, final byte data);
|
||||
|
||||
public abstract void update(ArrayList<Chunk> chunks);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue