| 110 | } |
| 111 | |
| 112 | void SkeletonCache::loadAsync(String spineStr, const std::function<void(SkeletonData*)>& handler) { |
| 113 | std::string skelFile, atlasFile; |
| 114 | std::tie(skelFile, atlasFile) = getFileFromStr(spineStr); |
| 115 | loadAsync(skelFile, atlasFile, handler); |
| 116 | } |
| 117 | |
| 118 | void SkeletonCache::loadAsync(String skelFile, String atlasFile, const std::function<void(SkeletonData*)>& handler) { |
| 119 | std::string skelPath = SharedContent.getFullPath(skelFile); |
nothing calls this directly
no test coverage detected