First basic working version with twig

This commit is contained in:
Tim
2023-06-02 18:16:39 +02:00
commit 7216edd186
6 changed files with 303 additions and 0 deletions

10
src/index.php Normal file
View File

@ -0,0 +1,10 @@
<?php
namespace Ardent\Game;
include '../vendor/autoload.php';
include "renderer.php";
$renderer = new renderer();
echo $renderer->render('index.html.twig');