<?php
session_start();
if($_SESSION['logged'] == 'true'){
require_once("class/creature_class.php");
$c = new Creature;
if (isset($_GET["o"])) {
$c->SkillsDetail();
} else {
$c->DrawGUI();
}
} else {
header("Location: index.php");
}
?>