mirror of
https://github.com/sigmasternchen/mobmash.click
synced 2025-03-15 16:19:02 +00:00
19 lines
419 B
PHP
19 lines
419 B
PHP
![]() |
<?php
|
||
|
|
||
|
require_once __DIR__ . "/../core.php";
|
||
|
require_once __DIR__ . "/../lib/rating.php";
|
||
|
|
||
|
session_start();
|
||
|
|
||
|
$left = getRandomMob();
|
||
|
$right = getRandomMob();
|
||
|
|
||
|
$left["rating"] = getEloForMob($left["id"]);
|
||
|
$right["rating"] = getEloForMob($right["id"]);
|
||
|
|
||
|
$title = "Test";
|
||
|
$content = function() use ($left, $right) {
|
||
|
include __DIR__ . "/../view/fragments/mobSelection.php";
|
||
|
};
|
||
|
|
||
|
include __DIR__ . "/../view/layout.php";
|