Halo projectile launcher

This commit is contained in:
Martin
2022-11-29 15:55:47 +01:00
parent a0bd11b61d
commit da70723f2d
14 changed files with 1625 additions and 1182 deletions

View File

@@ -0,0 +1,3 @@
export function roundToOneDecimal(num: number): number {
return Math.round(num * 10) / 10;
}