format codebase with prettier

This commit is contained in:
Evan
2025-02-01 12:05:11 -08:00
parent cd121a5cd4
commit 4ee37323f9
98 changed files with 12190 additions and 10233 deletions
+13 -15
View File
@@ -3,22 +3,20 @@ import { TerraNullius, Cell, PlayerID } from "./Game";
import { GameImpl } from "./GameImpl";
import { TileRef } from "./GameMap";
export class TerraNulliusImpl implements TerraNullius {
constructor() {}
smallID(): number {
return 0;
}
clientID(): ClientID {
return "TERRA_NULLIUS_CLIENT_ID";
}
id(): PlayerID {
return null;
}
constructor() {
}
smallID(): number {
return 0
}
clientID(): ClientID {
return "TERRA_NULLIUS_CLIENT_ID"
}
id(): PlayerID {
return null
}
isPlayer(): false { return false as const; }
isPlayer(): false {
return false as const;
}
}