diff options
Diffstat (limited to 'Source/Asura.Framework/filesystem/pathloader.lua')
-rw-r--r-- | Source/Asura.Framework/filesystem/pathloader.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Source/Asura.Framework/filesystem/pathloader.lua b/Source/Asura.Framework/filesystem/pathloader.lua new file mode 100644 index 0000000..b9112df --- /dev/null +++ b/Source/Asura.Framework/filesystem/pathloader.lua @@ -0,0 +1,11 @@ +local PathLoader = AsuraEngine.Loader.New("path") +local PathManager = require "Path/PathManager" + +function PathLoader.Load(asset) + if asset.type ~= "path" then + return nil + end + +end + +return Path
\ No newline at end of file |