mirror of https://github.com/axmolengine/axmol.git
9 lines
257 B
Plaintext
9 lines
257 B
Plaintext
|
|
||
|
class CCNotificationCenter : public CCObject
|
||
|
{
|
||
|
static CCNotificationCenter *sharedNotificationCenter(void);
|
||
|
void registerScriptObserver(LUA_FUNCTION handler);
|
||
|
void unregisterScriptObserver(void);
|
||
|
void postNotification(const char *name);
|
||
|
};
|