geode/loader/include/Geode/cocos/robtop/content/CCContentManager.h
HJfod 662a9e99f5 big cocos reworks
- remove cocos2dx folder
 - change all include paths in cocos2d to be relative
2022-10-17 15:46:36 +03:00

24 lines
592 B
C++
Vendored

#ifndef __CCCONTENT_MANAGER_H__
#define __CCCONTENT_MANAGER_H__
#include "../../include/ccMacros.h"
#include "../../cocoa/CCObject.h"
#include "../../cocoa/CCDictionary.h"
RT_ADD(
// not in cocos2d namespace
class CC_DLL CCContentManager : public cocos2d::CCObject
{
public:
static CCContentManager* sharedManager();
CCContentManager();
bool init();
cocos2d::CCDictionary* addDict(const char* dict, bool unk);
cocos2d::CCDictionary* addDictDS(const char* dict);
void clearCache();
};
);
#endif