diff options
Diffstat (limited to 'meta/3rd/Cocos4.0/cc.EventKeyboard.lua')
-rw-r--r-- | meta/3rd/Cocos4.0/cc.EventKeyboard.lua | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/cc.EventKeyboard.lua b/meta/3rd/Cocos4.0/cc.EventKeyboard.lua new file mode 100644 index 00000000..73e7b640 --- /dev/null +++ b/meta/3rd/Cocos4.0/cc.EventKeyboard.lua @@ -0,0 +1,16 @@ + +---@class cc.EventKeyboard :cc.Event +local EventKeyboard={ } +cc.EventKeyboard=EventKeyboard + + + + +---* Constructor.<br> +---* param keyCode A given keycode.<br> +---* param isPressed True if the key is pressed.<br> +---* js ctor +---@param keyCode int +---@param isPressed boolean +---@return self +function EventKeyboard:EventKeyboard (keyCode,isPressed) end
\ No newline at end of file |