mirror of
https://github.com/sigmasternchen/php-chess
synced 2025-03-15 16:08:54 +00:00
13 lines
211 B
PHP
13 lines
211 B
PHP
<?php
|
|
|
|
require_once '../src/core.php';
|
|
|
|
use Game\Game;
|
|
|
|
$game = Game::fromStartPosition();
|
|
|
|
$content = function() use ($game) {
|
|
require '../src/View/fragments/board.php';
|
|
};
|
|
|
|
require '../src/View/base.php';
|