12 lines
225 B
PHP
12 lines
225 B
PHP
<?php
|
|
/**
|
|
* Арена. Принцип: https://src.liks.pw/lopar/battles-game-test/issues/3
|
|
*/
|
|
|
|
use Battles\Arena;
|
|
use Battles\Template;
|
|
|
|
Template::header('Арена');
|
|
|
|
$fight = new Arena(1);
|
|
$fight->Init([[2,1],[3,2]]); |