Archived
1
0
Fork 0
This repository has been archived on 2020-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
news-script/russian.php

28 lines
641 B
PHP

<?php
require "vendor/autoload.php";
require "Game.php";
$loader = new \Aura\Autoload\Loader;
$loader->register();
$loader->addPrefix('Source', 'Source');
if (PHP_SAPI !== 'cli') {
ob_start();
echo '<!DOCTYPE html><html><body><code><pre>';
}
try {
(new Source\Urq())->print();
(new Source\Qsp())->print();
(new Source\Kvester())->print();
(new Source\Apero())->print();
(new Source\Instead())->print();
(new Source\Storymaze())->print();
(new Source\Hyperbook())->print();
(new Source\Questbook())->print();
} catch (Exception $e) {}
if (PHP_SAPI !== 'cli') {
echo '</pre></code></body></html>';
ob_end_flush();
}