mirror of https://github.com/axmolengine/axmol.git
20 lines
265 B
Plaintext
20 lines
265 B
Plaintext
|
|
||
|
|
||
|
namespace cocos2d
|
||
|
{
|
||
|
|
||
|
|
||
|
|
||
|
/**
|
||
|
@brief Output Debug message.
|
||
|
*/
|
||
|
void CCLog(const char * pszFormat, ...);
|
||
|
|
||
|
void CCLuaLog(const char * pszFormat);
|
||
|
/**
|
||
|
@brief Pop out a message box
|
||
|
*/
|
||
|
void CCMessageBox(const char * pszMsg, const char * pszTitle);
|
||
|
|
||
|
}
|