mirror of
https://github.com/scummvm/scummvm-web.git
synced 2026-06-20 05:45:49 +00:00
20 lines
367 B
PHP
20 lines
367 B
PHP
<?php
|
|
|
|
/*
|
|
* Main lib for ScummVM
|
|
* by Jeremy Newman <jnewman@dracowulf.com>
|
|
*
|
|
*/
|
|
|
|
//set global path
|
|
global $file_root;
|
|
|
|
//get modules
|
|
require($file_root."/include/"."config.php");
|
|
require($file_root."/include/"."html.php");
|
|
require($file_root."/include/"."menu.php");
|
|
require($file_root."/include/"."sidebar.php");
|
|
require($file_root."/include/"."util.php");
|
|
|
|
?>
|