Added LDoc comments for new files, ready to merge pt. 2

This commit is contained in:
SkylarHew
2022-01-23 18:21:23 -07:00
parent e72911c67c
commit 79b548f9a0
24 changed files with 118 additions and 94 deletions

View File

@ -1,4 +1,4 @@
--- remove_process
--- Remove a process
-- @module remove_process
local remove_process = {
@ -8,18 +8,15 @@ local remove_process = {
hide = false;
}
--- (Required) Data for module
-- Variables that module uses during the course of a process
-- Can be blank
remove_process.data = {
}
remove_process.config = {
}
--- (Required): initiate function
-- @param result (optional) Callback if this module is embedded in other modules
-- @function initiate
--- Initiate function
-- @function remove_process:initiate
-- @param result Callback if this module is embedded in other modules
function remove_process:initiate(result)
-- prepare process options
local available_processes = {}
@ -108,6 +105,4 @@ function remove_process:initiate(result)
)
end
--- (Required) Add to module table
modpol.modules.remove_process = remove_process