Add a ID property to PlayerData

This commit is contained in:
Oliver Akins 2022-07-22 19:45:18 -06:00
parent 5b2072b473
commit 33d304ef5b
No known key found for this signature in database
GPG key ID: 3C2014AF9457AF99

View file

@ -20,4 +20,7 @@ export interface PlayerData {
/** Whether or not the player is the host of the game. */ /** Whether or not the player is the host of the game. */
host: boolean; host: boolean;
/** The unique ID of the player */
id: string;
} }