Collision

This commit is contained in:
2026-03-14 19:12:56 -03:00
parent 5a368d33a1
commit e73cbcf5db
7 changed files with 138 additions and 10 deletions
+4
View File
@@ -11,4 +11,8 @@ export class Position extends Component {
this.y = y;
this.z = z;
}
clone() {
return new Position(this.x, this.y, this.z);
}
}