📄 Added licence to GameState and GameControl files

This commit is contained in:
Proxyfil
2026-04-23 07:59:43 +02:00
parent fc339e3ff1
commit a49bf672d5
2 changed files with 12 additions and 0 deletions
@@ -1,6 +1,14 @@
// SPDX-FileCopyrightText: 2026 Marlon W (Mawoka)
//
// SPDX-License-Identifier: MPL-2.0
import type { Player, PlayerAnswer } from '$lib/admin.ts';
import { QuizData } from '$lib/quiz_types';
/**
* Interface that include all the game states for the admin page.
* Still in development and not used everywhere but should be a good practice
*/
export interface IGameState {
game_id: string;
players: Player[];
@@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2026 Marlon W (Mawoka)
//
// SPDX-License-Identifier: MPL-2.0
import type { Socket } from 'socket.io-client';
/**