Converted /editdrain to use own stack.

This commit is contained in:
sk89q
2010-10-11 11:30:11 -07:00
parent 6882aa416d
commit 2f2ff86bac
2 changed files with 58 additions and 39 deletions

View File

@ -33,6 +33,33 @@ public class BlockPoint extends Point {
public BlockPoint(Point pt) {
super(pt);
}
/**
* Construct the Point object.
*
* @param pt
*/
public BlockPoint(int x, int y, int z) {
super(x, y, z);
}
/**
* Construct the Point object.
*
* @param pt
*/
public BlockPoint(float x, float y, float z) {
super(x, y, z);
}
/**
* Construct the Point object.
*
* @param pt
*/
public BlockPoint(double x, double y, double z) {
super(x, y, z);
}
/**
* Checks if another object is equivalent.