initial commit

This commit is contained in:
lopar
2018-01-28 18:40:49 +02:00
commit 46c75d1542
8193 changed files with 183296 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<?
error_reporting(E_ALL ^ E_NOTICE);
include_once('includes/mapmove_class.php');
echo "<body style='font-family:monospace;'>";
$map = new TMapmove();
$map->cur_pos=array(0,0);
//$c=array(0,0);
$map->paint();
$map->move_to(1,1);
$map->paint();
echo "</body>";
?>