<?php
//echo $_GET['callType'];
define('KEY', '########################' );
define('VERSION', "0.0.1");
if (isset($_GET['displaySource']))
{
    $source = file_get_contents(__FILE__);
    $source = str_replace(KEY, "########################", $source);
    echo highlight_string($source);
    exit;
}
if (!isset($_GET['callType']))
{
    echo "I'm a robot, i don't play well on my own";
    exit;
}

switch($_GET['callType'])
{
    case "gameInit":
        echo VERSION;
        break;
    case "round":
        break;
}

?>
1