diff --git a/server/src/objects/Player.ts b/server/src/objects/Player.ts index cfc12aa..2d85416 100644 --- a/server/src/objects/Player.ts +++ b/server/src/objects/Player.ts @@ -2,6 +2,8 @@ import { Socket } from "socket.io"; export class Player { readonly name: string; + public team: team|null = null; + public role: role|null = null; public socket: Socket; readonly isHost: boolean;