add custom constructors to CCClippingNode and CCAction

This commit is contained in:
HJfod 2023-04-02 12:46:37 +03:00
parent f90ca9edd5
commit cd3c09637b
2 changed files with 3 additions and 0 deletions

View file

@ -54,6 +54,7 @@ public:
* @js ctor
*/
CCAction(void);
GEODE_CUSTOM_CONSTRUCTOR_COCOS(CCAction, CCObject);
/**
* @js NA
* @lua NA

View file

@ -115,6 +115,8 @@ public:
bool isInverted() const;
void setInverted(bool bInverted);
GEODE_CUSTOM_CONSTRUCTOR_COCOS(CCClippingNode, CCNode);
protected:
CCClippingNode();
};