clean: use camel case for class file

This commit is contained in:
2024-02-20 09:29:47 +01:00
parent c143d96443
commit 40a9395340
16 changed files with 21 additions and 21 deletions

View File

@ -4,7 +4,7 @@ import { GameConfig } from "./GameConfig.js";
import { Player } from "./Player.js";
import { Time } from "./Time.js";
import { Wall } from "./Wall.js";
import { Client } from "../client.js";
import { Client } from "../Client.js";
class Game
{

View File

@ -1,5 +1,5 @@
import { Player } from "./Player.js";
import { Client } from "../client.js";
import { Client } from "../Client.js";
import { Game } from "./Game.js";
import { Segment } from "./Segment.js";