8 lines
173 B
PHP
8 lines
173 B
PHP
|
<?php
|
||
|
|
||
|
foreach([
|
||
|
__DIR__ . "/GamUsino.php",
|
||
|
__DIR__ . "/GamUsino.Secrets.php"
|
||
|
] as $file)
|
||
|
if(file_exists($file))
|
||
|
include $file;
|