blob: b9112df5e7cc8b04d976d590ec7cc6566de4f220 (
plain)
1
2
3
4
5
6
7
8
9
10
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
|