mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-27 01:45:35 -05:00
give a name to the touch type enum aswell as explicit values
This commit is contained in:
parent
35f7f86e6d
commit
e2e1da069d
1 changed files with 6 additions and 6 deletions
|
@ -47,13 +47,13 @@ typedef enum
|
|||
} ccTouchSelectorFlag;
|
||||
|
||||
|
||||
enum {
|
||||
CCTOUCHBEGAN,
|
||||
CCTOUCHMOVED,
|
||||
CCTOUCHENDED,
|
||||
CCTOUCHCANCELLED,
|
||||
enum ccTouchType {
|
||||
CCTOUCHBEGAN = 0,
|
||||
CCTOUCHMOVED = 1,
|
||||
CCTOUCHENDED = 2,
|
||||
CCTOUCHCANCELLED = 3,
|
||||
|
||||
ccTouchMax,
|
||||
ccTouchMax = 4,
|
||||
};
|
||||
|
||||
class CCSet;
|
||||
|
|
Loading…
Reference in a new issue