12 lines
124 B
Plaintext
12 lines
124 B
Plaintext
class Pos{
|
|
int x;
|
|
int y;
|
|
int z;
|
|
|
|
Pos(int x, int y, int z) {
|
|
this.x = x;
|
|
this.y = y;
|
|
this.z = z;
|
|
}
|
|
}
|