mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-27 01:45:35 -05:00
add custom constructors to CCClippingNode and CCAction
This commit is contained in:
parent
f90ca9edd5
commit
cd3c09637b
2 changed files with 3 additions and 0 deletions
|
@ -54,6 +54,7 @@ public:
|
||||||
* @js ctor
|
* @js ctor
|
||||||
*/
|
*/
|
||||||
CCAction(void);
|
CCAction(void);
|
||||||
|
GEODE_CUSTOM_CONSTRUCTOR_COCOS(CCAction, CCObject);
|
||||||
/**
|
/**
|
||||||
* @js NA
|
* @js NA
|
||||||
* @lua NA
|
* @lua NA
|
||||||
|
|
|
@ -115,6 +115,8 @@ public:
|
||||||
bool isInverted() const;
|
bool isInverted() const;
|
||||||
void setInverted(bool bInverted);
|
void setInverted(bool bInverted);
|
||||||
|
|
||||||
|
GEODE_CUSTOM_CONSTRUCTOR_COCOS(CCClippingNode, CCNode);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
CCClippingNode();
|
CCClippingNode();
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue