Make regions Cloneable

This commit is contained in:
aumgn
2012-03-20 15:14:41 +01:00
committed by zml2008
parent 56a8574129
commit 842c469285
6 changed files with 29 additions and 1 deletions

View File

@ -29,7 +29,7 @@ import java.util.Set;
*
* @author sk89q
*/
public interface Region extends Iterable<BlockVector> {
public interface Region extends Iterable<BlockVector>, Cloneable {
/**
* Get the lower point of a region.
*
@ -151,4 +151,6 @@ public interface Region extends Iterable<BlockVector> {
* @return
*/
public void setWorld(LocalWorld world);
public Region clone();
}