misc doc fixes

This commit is contained in:
Evil Factory
2022-05-16 13:53:39 -03:00
parent cb29c27752
commit fd6b833c98
8 changed files with 56 additions and 519 deletions

View File

@@ -8,6 +8,14 @@ Class providing networking related tasks.
local Networking = {}
---
-- @realm server
Networking.FileSenderMaxPacketsPerUpdate = 4
---
-- @realm server
Networking.LastClientListUpdateID = 0
--- Send a post HTTP Request, callback is called with an argument result string.
-- @realm server
function Networking.RequestPostHTTP(url, callback, textData, contentType) end
@@ -37,3 +45,11 @@ function Networking.Receive(netMessageName, callback) end
-- @realm server
function Networking.ClientWriteLobby(client) end
--- Creates an entity event.
-- @realm shared
function Networking.CreateEntityEvent(entity, extraData) end
--- Updates the client permissions, call this after you i've changed the permissions of a client, so they are notified about it.
-- @realm server
function Networking.UpdateClientPermissions(client) end