diff --git a/Bundle-Patcher-Architecture.md b/Bundle-Patcher-Architecture.md index 59cfb13..b649a09 100644 --- a/Bundle-Patcher-Architecture.md +++ b/Bundle-Patcher-Architecture.md @@ -19,13 +19,13 @@ An independent mod that's handled specially. Its purpose is to handle the initia ```lua local obj = {} --- boot_gui Gui A special Gui object created by the game that can be used to display status on --- mod_data table The contents of `scripts/mods/mod_data.lua` as described below. --- libs table A key-value map of certain Lua libraries/globals that the game strips, but that might be useful during the loading process +-- @param boot_gui Gui A special Gui object created by the game that can be used to display status on +-- @param mod_data table The contents of `scripts/mods/mod_data.lua` as described below. +-- @param libs table A key-value map of certain Lua libraries/globals that the game strips, but that might be useful during the loading process function obj:init(boot_gui, mod_data, libs) end --- dt number The delta time since the last call +-- @param dt number The delta time since the last call function obj:update(dt) return is_done end