22 lines
277 B
PHP
22 lines
277 B
PHP
<?php
|
|
|
|
namespace Module\FolderLoading;
|
|
use \FuzeWorks\Module;
|
|
|
|
/**
|
|
* Sections module, see usage documentation
|
|
* @author TechFuze
|
|
*/
|
|
class Main extends Module {
|
|
|
|
/**
|
|
* Loads the module and registers the events
|
|
* @access public
|
|
*/
|
|
public function onLoad() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|