From 52097b6ee7cc8f5a770eb851902560b5b8592218 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=80=E8=90=8C=E5=B0=8F=E6=B1=90?= Date: Mon, 22 Feb 2021 21:05:36 +0800 Subject: add meta/3rd with acknowledgement --- meta/3rd/Cocos4.0/cc.Console.lua | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 meta/3rd/Cocos4.0/cc.Console.lua (limited to 'meta/3rd/Cocos4.0/cc.Console.lua') diff --git a/meta/3rd/Cocos4.0/cc.Console.lua b/meta/3rd/Cocos4.0/cc.Console.lua new file mode 100644 index 00000000..44c4d2e4 --- /dev/null +++ b/meta/3rd/Cocos4.0/cc.Console.lua @@ -0,0 +1,39 @@ + +---@class cc.Console :cc.Ref +local Console={ } +cc.Console=Console + + + + +---* starts listening to specified TCP port +---@param port int +---@return boolean +function Console:listenOnTCP (port) end +---* log something in the console +---@param buf char +---@return self +function Console:log (buf) end +---* delete custom command +---@param cmdName string +---@return self +function Console:delCommand (cmdName) end +---* stops the Console. 'stop' will be called at destruction time as well +---@return self +function Console:stop () end +---* starts listening to specified file descriptor +---@param fd int +---@return boolean +function Console:listenOnFileDescriptor (fd) end +---* +---@param var char +---@return self +function Console:setCommandSeparator (var) end +---* set bind address
+---* address : 127.0.0.1 +---@param address string +---@return self +function Console:setBindAddress (address) end +---* Checks whether the server for console is bound with ipv6 address +---@return boolean +function Console:isIpv6Server () end \ No newline at end of file -- cgit v1.2.3