Interface Player

interface Player {
    beginner: boolean;
    color: string;
    color_back: any;
    eliminated: number;
    id: string;
    is_ai: string;
    name: string;
    score: string;
    zombie: number;
}

Properties

beginner: boolean
color: string
color_back: any
eliminated: number
id: string
is_ai: string
name: string
score: string
zombie: number

Generated using TypeDoc