SuperSmash_Framework/system/SuperSmash/model.php

22 lines
463 B
PHP
Raw Normal View History

2018-12-19 20:44:16 +01:00
<?php
/**************************************/
/**** SuperSmash Framework ****/
/**** Created By SuperSmash ****/
/**** Started on: 25-04-2012 ****/
/**************************************/
namespace system\SuperSmash;
if (!defined("SUPERSMASH_FRAMEWORK")){die("You cannot access this page directly!");}
class Model
{
// Create the contructor
public function __construct()
{
$this->load = loadClass('Loader');
}
}
?>