Initial commit

This commit is contained in:
2026-01-09 15:08:46 +01:00
commit 1faf742c6a
11 changed files with 547 additions and 0 deletions

11
pos.pde Normal file
View File

@@ -0,0 +1,11 @@
class Pos{
int x;
int y;
int z;
Pos(int x, int y, int z) {
this.x = x;
this.y = y;
this.z = z;
}
}