game/core1/app/init.php

13 lines
247 B
PHP
Raw Normal View History

2022-06-06 21:30:34 +00:00
<?php
set_include_path(APP_PATH);
spl_autoload_extensions('.php');
spl_autoload_register();
require PROJECT_PATH . DS . 'lib' . DS . 'Twig' . DS . 'Autoloader.php';
Twig_Autoloader::register();
Core\Database::connect();
Core\Route::begin();
?>