1
0
mirror of https://github.com/AlexKrunch/AnonIB-3D.git synced 2024-09-30 07:45:24 -04:00
AnonIB-3D/ready2use/srv/php/trash/RogueController.php
2019-08-17 10:21:07 +02:00

33 lines
640 B
PHP
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?
ini_set('display_errors', 1);
require_once 'Models/Rogue/World.php';
$world = new World();
$world->addTown("🇺🇸Alpha City", 99 );
$world->addTown("🇯🇵Neo Tokyo ネオ東京", 60 );
$world->addTown("🇭🇰Honk Kong Empire", 30 );
$world->addTown("🏴Pirate Haven", 20 );
$world->addTown("🇷🇺Pапс город", 5 );
$world->initMacroEconomy();
echo '<h1>Cycling</h1><br/>';
for($i = 0; $i < 150; ++$i) {
$world->cycling();
}
/*
$jp = new Town("jp", 60 );
$b = new Town("b", 30 );
$gagged = new Town("gagged", 30 );
$h = new Town("h", 10 );
$op = new Town("op", 5 );*/
/*
Class RogueController {
}*/