Advertisement
Kwright03

Untitled

Jun 12th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. class Vector3f {
  2. public int x,y,z;
  3.  
  4. public Vector3f(int x, int y, int z){
  5. this.x = x;
  6. this.y = y;
  7. this.z = z;
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement