mirror of https://github.com/axmolengine/axmol.git
17 lines
343 B
Plaintext
17 lines
343 B
Plaintext
|
|
class CCTouch : public CCObject
|
|
{
|
|
CCPoint getLocation() const;
|
|
CCPoint getPreviousLocation() const;
|
|
CCPoint getDelta() const;
|
|
CCPoint getLocationInView() const;
|
|
CCPoint getPreviousLocationInView() const;
|
|
|
|
void setTouchInfo(int id, float x, float y);
|
|
int getID();
|
|
};
|
|
|
|
class CCEvent : public CCObject
|
|
{
|
|
};
|