mirror of
https://github.com/sigmasternchen/mobmash.click
synced 2025-03-15 16:19:02 +00:00
18 lines
No EOL
367 B
PHP
18 lines
No EOL
367 B
PHP
<?php
|
|
|
|
require_once __DIR__ . "/../core.php";
|
|
require_once __DIR__ . "/../lib/pairing.php";
|
|
|
|
session_start();
|
|
|
|
$pairing = makeInitialPairing(session_id());
|
|
|
|
$left = $pairing[0];
|
|
$right = $pairing[1];
|
|
|
|
$title = "Test";
|
|
$content = function() use ($left, $right) {
|
|
include __DIR__ . "/../view/fragments/mobSelection.php";
|
|
};
|
|
|
|
include __DIR__ . "/../view/layout.php"; |