this is still acting up idk why

This commit is contained in:
biglyderv 2024-11-25 14:14:20 -05:00
parent 0a1be30d40
commit b10559bd96
2 changed files with 2 additions and 1 deletions

View file

@ -1,4 +1,4 @@
import crypto from "./crypto.js";
import crypto from "../crypto.js";
function distF(ent, target) {
return ((ent.pos.x - target.pos.x) ** 2) + ((ent.pos.y - target.pos.y) ** 2)

View file

@ -10,6 +10,7 @@ var game = new Game();
game.init();
app.use('/crypto.js', express.static('./common/crypto.js'));
app.use('/js', express.static('./common'));
app.use(express.static('./static'));