axmol/tools/tolua++/CCTouch.pkg

19 lines
287 B
Plaintext
Raw Normal View History

2012-02-02 14:26:38 +08:00
enum {
CCTOUCHBEGAN,
CCTOUCHMOVED,
CCTOUCHENDED,
CCTOUCHCANCELLED,
};
2011-06-14 14:31:25 +08:00
class CCTouch : public CCObject
{
CCPoint locationInView(int nViewId);
CCPoint previousLocationInView(int nViewId);
2012-02-02 14:26:38 +08:00
int view();
2011-06-14 14:31:25 +08:00
};
class CCEvent : public CCObject
{
};