You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
456 B
20 lines
456 B
<?php
|
|
|
|
include "metiers/deck.php";
|
|
include "metiers/game.php";
|
|
|
|
session_start();
|
|
|
|
|
|
|
|
if (isset($_GET['action']) && !empty($_GET['action'])) {
|
|
$_SESSION['deck'] = new Deck($_GET['action']);
|
|
$_SESSION['game'] = new Game($_SESSION['deck']);
|
|
$game = $_SESSION['game'];
|
|
echo json_encode($game->start());
|
|
|
|
}else if (isset($_GET['action']) && $_GET['action'] == 'submit'){
|
|
$deck = $_SESSION['deck'];
|
|
echo json_encode($deck->threeMore());
|
|
}
|