diff options
Diffstat (limited to 'frontend/src/types/Chapters.tsx')
| -rw-r--r-- | frontend/src/types/Chapters.tsx | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/frontend/src/types/Chapters.tsx b/frontend/src/types/Chapters.tsx deleted file mode 100644 index 2c0afdd..0000000 --- a/frontend/src/types/Chapters.tsx +++ /dev/null | |||
| @@ -1,19 +0,0 @@ | |||
| 1 | import { Game } from "./Game"; | ||
| 2 | import { Map } from "./Map"; | ||
| 3 | |||
| 4 | interface Chapter { | ||
| 5 | id: number; | ||
| 6 | name: string; | ||
| 7 | image: string; | ||
| 8 | is_disabled: boolean; | ||
| 9 | } | ||
| 10 | |||
| 11 | export interface GameChapter { | ||
| 12 | chapter: Chapter; | ||
| 13 | maps: Map[]; | ||
| 14 | } | ||
| 15 | |||
| 16 | export interface GamesChapters { | ||
| 17 | game: Game; | ||
| 18 | chapters: Chapter[]; | ||
| 19 | } \ No newline at end of file | ||