<?
define('PROTECTOR', 1);
include('files/db.php');
include('files/auth.php');
if (isset($_SESSION['log']) && isset($_SESSION['pas']))
{
session_destroy();
setcookie('log', '');
setcookie('pas', '');
header('location: index.php');
}
else
{
header('location: game.php');
}
?>