game-context.ts 190 Bytes
Newer Older
Romain DELEAU's avatar
Romain DELEAU committed
1 2 3 4 5 6 7 8 9
export class GameContext {

    univers: string = '';
    support: string = '';
    duration: string = '';
    intrigue: string = '';
    other: string = '';
    comments: Comment[] = [];
}