pubkey = $pubkey; $this->name = $name; } function getPubkey () { return $this->pubkey; } function getName () { return $this->name; } } $players = [ new Player('2L8vaYixCf97DMT8SistvQFeBj7vb6RQL7tvwyiv1XVH', 'Fred'), new Player('25zB1gSC7Qhwnx463cuDLDCKLRVieLAgFiPbYq6jVHG9', 'Boris'), new Player('u3rNW7CzqDC5V4L3FGVbSPsrBd78y8pkRACKHtBtCPx', 'Syoul'), new Player('8PTThXiUSwwuPoqQWw3tuAn4MpvzQzpKhs6LMuiozS7Z', 'kimamila') ]; if (!isset($_SESSION['radius'])) { $_SESSION['radius'] = DEFAULT_RADIUS; } /* ===================== Games ===================== */ $games = [ 'spationaute' => [ 'title' => 'SpaceĞ1', 'description' => 'Les extraterrestres viennent terraformer ta planète' ], 'magie' => [ 'title' => 'Ğ1Quest', 'description' => 'Ğarry Potier à l\'école des sourciers.' ] ]; define('DEFAULT_GAME', 'spationaute'); if (!isset($_SESSION['gameId'])) { $_SESSION['gameId'] = DEFAULT_GAME; } require_once('functions.php');