SpreadQuiz/class/GameMgr.php

13 lines
314 B
PHP

<?php
class Game {
private string $name; // Game's name
private string $owner; // Game's owner
private array $contributors; // Contributors to the game
private string $description; // Game's description
private bool $gameFileIsPresent; // indicates if game CSV is in place
}
class GameMgr
{
}