mirror of https://github.com/axmolengine/axmol.git
14 lines
283 B
C
14 lines
283 B
C
|
#ifndef __CCDANDROIDUTILS_H__
|
||
|
#define __CCDANDROIDUTILS_H__
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace CocosDenshion {
|
||
|
namespace android {
|
||
|
bool is_buggy_device(void);
|
||
|
std::string getFullPathWithoutAssetsPrefix(const char* pszFilename);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif //__CCDANDROIDUTILS_H__
|