Some settings

This commit is contained in:
Frank
2026-01-03 13:16:58 +01:00
parent 18821e2463
commit b58da74967
22 changed files with 605 additions and 23 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
declare(strict_types=1);
namespace App\Game\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
final class GameController extends AbstractController
{
#[Route(path: '', name: 'game')]
public function index(): Response
{
return $this->render('game/index.html.twig');
}
}