diff options
Diffstat (limited to 'meta/3rd/Cocos4.0/cc.EventCustom.lua')
-rw-r--r-- | meta/3rd/Cocos4.0/cc.EventCustom.lua | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/cc.EventCustom.lua b/meta/3rd/Cocos4.0/cc.EventCustom.lua new file mode 100644 index 00000000..c22bf161 --- /dev/null +++ b/meta/3rd/Cocos4.0/cc.EventCustom.lua @@ -0,0 +1,18 @@ + +---@class cc.EventCustom :cc.Event +local EventCustom={ } +cc.EventCustom=EventCustom + + + + +---* Gets event name.<br> +---* return The name of the event. +---@return string +function EventCustom:getEventName () end +---* Constructor.<br> +---* param eventName A given name of the custom event.<br> +---* js ctor +---@param eventName string +---@return self +function EventCustom:EventCustom (eventName) end
\ No newline at end of file |