diff options
Diffstat (limited to 'meta/3rd/Cocos4.0/cc.EventTouch.lua')
-rw-r--r-- | meta/3rd/Cocos4.0/cc.EventTouch.lua | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/cc.EventTouch.lua b/meta/3rd/Cocos4.0/cc.EventTouch.lua new file mode 100644 index 00000000..3902d364 --- /dev/null +++ b/meta/3rd/Cocos4.0/cc.EventTouch.lua @@ -0,0 +1,21 @@ + +---@class cc.EventTouch :cc.Event +local EventTouch={ } +cc.EventTouch=EventTouch + + + + +---* Get event code.<br> +---* return The code of the event. +---@return int +function EventTouch:getEventCode () end +---* Set the event code.<br> +---* param eventCode A given EventCode. +---@param eventCode int +---@return self +function EventTouch:setEventCode (eventCode) end +---* Constructor.<br> +---* js NA +---@return self +function EventTouch:EventTouch () end
\ No newline at end of file |