aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/types/Chapters.tsx
blob: 2c0afddf436e4e621e2405a13121a61a29de2bac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { Game } from "./Game";
import { Map } from "./Map";

interface Chapter {
    id: number;
    name: string;
    image: string;
    is_disabled: boolean;
}

export interface GameChapter {
    chapter: Chapter;
    maps: Map[];
}

export interface GamesChapters {
    game: Game;
    chapters: Chapter[];
}