0
0
Fork 0

Allow role and team to be null for players

This commit is contained in:
Oliver-Akins 2021-01-01 16:05:51 -07:00
parent 0fdd11b836
commit 4fe7ba7727

View file

@ -11,8 +11,8 @@ type answer = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8;
// Player specific data // Player specific data
interface player { interface player {
name: string; name: string;
role: role; role: role | null;
team: team; team: team | null;
} }