2022-01-25 17:59:18 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Арена. Принцип: https://src.liks.pw/lopar/battles-game-test/issues/3
|
|
|
|
*/
|
|
|
|
|
|
|
|
use Battles\Arena;
|
|
|
|
use Battles\Template;
|
|
|
|
|
|
|
|
Template::header('Арена');
|
|
|
|
|
2022-01-26 22:56:03 +00:00
|
|
|
$dbname = new SQLite3('name.db');
|
|
|
|
Arena::$current = new Arena($dbname);
|