From 756f4762a67f9ab85a2870a7d973d9556552910c Mon Sep 17 00:00:00 2001 From: alext Date: Sat, 8 Jun 2019 16:20:14 +0200 Subject: [PATCH] Added new autoloading directories. --- src/autoload.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/autoload.php b/src/autoload.php index 7ad8d415..c3f62d5c 100644 --- a/src/autoload.php +++ b/src/autoload.php @@ -39,4 +39,5 @@ function register($namespace, $path) { } register('Engine', __DIR__ . '/engine'); -register('Addons', __DIR__ . '/addons'); +register('Themes', __DIR__ . '/themes'); +register('Plugins', __DIR__ . '/plugins');