axmol/tools/tolua++/CCKeypadDelegate.pkg

26 lines
439 B
Plaintext
Raw Normal View History

2011-06-14 14:31:25 +08:00
namespace cocos2d {
class CCKeypadDelegate
{
// The back key clicked
void keyBackClicked();
// The menu key clicked. only avialble on wophone & android
void keyMenuClicked();
};
class CCKeypadHandler : public CCObject
{
CCKeypadDelegate* getDelegate();
void setDelegate(CCKeypadDelegate *pDelegate);
bool initWithDelegate(CCKeypadDelegate *pDelegate);
};
} //namespace cocos2d