feat: initialize project with core dependencies and game entry point

This commit is contained in:
2026-01-03 01:24:51 -05:00
commit 45d46ddac6
1382 changed files with 844553 additions and 0 deletions

1
src/utils/MathUtils.js Normal file
View File

@@ -0,0 +1 @@
export const clamp = (val, min, max) => Math.max(min, Math.min(max, val));