CCArray* CCFileUtils::createCCArrayWithContentsOfFile(const std::string& filename) { std::string fullPath = fullPathForFilename(filename.c_str()); CCDictMaker tMaker; return tMaker.arrayWithContentsOfFile(fullPath.c_str()); }
CCArray* CCFileUtils::arrayWithContentsOfFileThreadSafe(const char* pFileName) { CCDictMaker tMaker; return tMaker.arrayWithContentsOfFile(pFileName); }
CCMutableArray<CCObject*>* CCFileUtils::arrayWithContentsOfFileThreadSafe(const char* pFileName) { CCDictMaker tMaker; return tMaker.arrayWithContentsOfFile(pFileName); }