Added ldoc comments for all lua modules and generated docs in documentation index.html

This commit is contained in:
SkylarHew
2022-01-20 11:04:44 -07:00
parent 5085d87f68
commit da7b996a8b
41 changed files with 4307 additions and 35 deletions

View File

@ -1,4 +1,4 @@
--- message_org
--- Messages all org members
-- @module message_org
local message_org = {
@ -14,7 +14,9 @@ message_org.data = {
message_org.config = {
}
--- Allows user to send input message to all org members
-- @function initiate
-- @param result
function message_org:initiate(result)
modpol.interactions.text_query(
self.initiator, "Message to all org members: ",
@ -34,5 +36,4 @@ function message_org:initiate(result)
self.org:delete_process(self.id)
end
--- (Required) Add to module table
modpol.modules.message_org = message_org