mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-24 00:17:52 -05:00
25 lines
566 B
C
25 lines
566 B
C
|
#ifndef __CCCONTENT_MANAGER_H__
|
||
|
#define __CCCONTENT_MANAGER_H__
|
||
|
|
||
|
#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
|