diff options
Diffstat (limited to 'meta/3rd/Cocos4.0/cc.RemoveSelf.lua')
-rw-r--r-- | meta/3rd/Cocos4.0/cc.RemoveSelf.lua | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/cc.RemoveSelf.lua b/meta/3rd/Cocos4.0/cc.RemoveSelf.lua new file mode 100644 index 00000000..833b5150 --- /dev/null +++ b/meta/3rd/Cocos4.0/cc.RemoveSelf.lua @@ -0,0 +1,30 @@ + +---@class cc.RemoveSelf :cc.ActionInstant +local RemoveSelf={ } +cc.RemoveSelf=RemoveSelf + + + + +---* init the action +---@param isNeedCleanUp boolean +---@return boolean +function RemoveSelf:init (isNeedCleanUp) end +---* Create the action.<br> +---* param isNeedCleanUp Is need to clean up, the default value is true.<br> +---* return An autoreleased RemoveSelf object. +---@return self +function RemoveSelf:create () end +---* +---@return self +function RemoveSelf:clone () end +---* param time In seconds. +---@param time float +---@return self +function RemoveSelf:update (time) end +---* +---@return self +function RemoveSelf:reverse () end +---* +---@return self +function RemoveSelf:RemoveSelf () end
\ No newline at end of file |