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