Add the host boolean to the playerdata type

This commit is contained in:
Oliver Akins 2022-03-12 23:14:57 -06:00
parent dd5a1e8cb9
commit dbce447297
No known key found for this signature in database
GPG key ID: 3C2014AF9457AF99

View file

@ -17,4 +17,7 @@ export interface PlayerData {
/** The spaceship icon that the player will appear as in-game. */ /** The spaceship icon that the player will appear as in-game. */
ship: ISpaceship; ship: ISpaceship;
/** Whether or not the player is the host of the game. */
host: boolean;
} }