migrate from perforce

This commit is contained in:
2026-04-19 01:16:27 +02:00
commit d161a20915
1810 changed files with 1156171 additions and 0 deletions

15
dist/Vis/VisProjectile.js vendored Normal file
View File

@@ -0,0 +1,15 @@
export class VisProjectile {
_positions;
_simProjectile;
constructor(simProjectile) {
this._simProjectile = simProjectile;
this._positions = [simProjectile.position, simProjectile.position];
}
get positions() {
return this._positions;
}
advanceStep() {
this._positions = [this._positions[1], this._simProjectile.position];
}
}
//# sourceMappingURL=VisProjectile.js.map