Added LDoc comments for new files, ready to merge pt. 2
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user