Advertisement
Guest User

Untitled

a guest
Jun 20th, 2015
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. public class BlockPOS {
  2.     public int x;
  3.     public int y;
  4.     public int z;
  5.    
  6.    
  7.     public BlockPOS(int x, int y, int z) {
  8.         super();
  9.         this.x = x;
  10.         this.y = y;
  11.         this.z = z;
  12.     }
  13.  
  14.  
  15.     @Override
  16.     public String toString() {
  17.         return "BlockPOS [x=" + x + ", y=" + y + ", z=" + z + "]";
  18.     }
  19.    
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement