First commit

This commit is contained in:
Nathan Adams
2014-04-17 22:05:44 -05:00
commit 703a7d5bbd
4 changed files with 204 additions and 0 deletions

10
index.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
require('system/engine/core.php');
foreach (glob("system/vendor/*.php") as $filename)
{
include $filename;
}
$core = new HF_Core();
$core->run();