Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public class Region {
  2. public int FX;
  3. public int TX;
  4. public int FY;
  5. public int TY;
  6. public int FZ;
  7. public int TZ;
  8. public String Name;
  9.  
  10. public Region(String name, int fx, int tx, int fy, int ty, int fz, int tz){
  11. Name = name;
  12. FX = fx;
  13. TX = tx;
  14. FY = fy;
  15. TY = ty;
  16. FZ = fz;
  17. TZ = tz;
  18. }
  19.  
  20. public Region(){ }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement