From 33d304ef5b0ac3671dde3a6891ce31ebca3beba7 Mon Sep 17 00:00:00 2001 From: Oliver Akins Date: Fri, 22 Jul 2022 19:45:18 -0600 Subject: [PATCH] Add a ID property to PlayerData --- common/src/types/PlayerData.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/src/types/PlayerData.ts b/common/src/types/PlayerData.ts index e1794de..9d803f6 100644 --- a/common/src/types/PlayerData.ts +++ b/common/src/types/PlayerData.ts @@ -20,4 +20,7 @@ export interface PlayerData { /** Whether or not the player is the host of the game. */ host: boolean; + + /** The unique ID of the player */ + id: string; } \ No newline at end of file