new documentation and some fixes in code

This commit is contained in:
Evil Factory
2021-09-12 15:58:59 -03:00
parent 3cd5a23af7
commit 656af7df2f
29 changed files with 1861 additions and 5 deletions

16
docs/lua/Networking.lua Normal file
View File

@@ -0,0 +1,16 @@
-- luacheck: ignore 111
--[[--
Class providing networking related tasks.
]]
-- @code Networking
--- Send a post HTTP Request.
-- treturn string result.
-- @realm server
function RequestPostHTTP(url, textData, contentType) end
--- Send a get HTTP Request.
-- treturn string result.
-- @realm server
function RequestGetHTTP(url) end