From a642c3616c3efa5f6ea3200a8cc223f8bb5cec0c Mon Sep 17 00:00:00 2001 From: Lucas Schwiderski Date: Thu, 23 Feb 2023 09:46:22 +0100 Subject: [PATCH] Update 'Bundle Patcher Architecture' --- Bundle-Patcher-Architecture.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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